diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index 81c44c1a65c..3b8d1c12e62 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -86,8 +86,7 @@ def default_api_version(self): ResourceType.MGMT_COMPUTE: SDKProfile('2019-03-01', { 'resource_skus': '2017-09-01', 'disks': '2018-09-30', - 'snapshots': '2018-09-30', - 'images': '2018-10-01' + 'snapshots': '2018-09-30' }), ResourceType.MGMT_RESOURCE_FEATURES: '2015-12-01', ResourceType.MGMT_RESOURCE_LINKS: '2016-09-01', diff --git a/src/command_modules/azure-cli-acs/setup.py b/src/command_modules/azure-cli-acs/setup.py index 7633041606d..96b774620fb 100644 --- a/src/command_modules/azure-cli-acs/setup.py +++ b/src/command_modules/azure-cli-acs/setup.py @@ -32,7 +32,7 @@ DEPENDENCIES = [ 'azure-mgmt-authorization==0.50.0', 'azure-mgmt-containerservice==5.1.0', - 'azure-mgmt-compute==4.6.1', + 'azure-mgmt-compute==5.0.0', 'azure-graphrbac==0.60.0', 'azure-cli-core', 'paramiko>=2.0.8', diff --git a/src/command_modules/azure-cli-servicefabric/setup.py b/src/command_modules/azure-cli-servicefabric/setup.py index 6d151c54dd3..0f119802956 100644 --- a/src/command_modules/azure-cli-servicefabric/setup.py +++ b/src/command_modules/azure-cli-servicefabric/setup.py @@ -38,7 +38,7 @@ 'azure-graphrbac==0.60.0', 'azure-keyvault==1.1.0', 'azure-mgmt-network==2.6.0', - 'azure-mgmt-compute==4.6.1', + 'azure-mgmt-compute==5.0.0', 'azure-mgmt-storage==3.1.1', 'azure-mgmt-servicefabric==0.2.0', 'azure-mgmt-keyvault==1.1.0', diff --git a/src/command_modules/azure-cli-vm/HISTORY.rst b/src/command_modules/azure-cli-vm/HISTORY.rst index 6c771c5fa14..b283c645177 100644 --- a/src/command_modules/azure-cli-vm/HISTORY.rst +++ b/src/command_modules/azure-cli-vm/HISTORY.rst @@ -8,6 +8,9 @@ Release History * vmss update: add `--protect-from-scale-in` and `--protect-from-scale-set-actions` to enable updates to the protection policy of VMSS VM instances. * vmss update: add `--instance-id` to enable generic update of VMSS VM instances. * vmss wait: add `--instance-id`. +* [new command group] ppg: add `ppg create / delete / list / show / update` for managing Proximity Placement Groups. +* ppg: add `--ppg` to `vm create`, `vmss create` and `vm availability-set create` +* image create: expose `--hyper-v-generation` parameter. 2.2.19 ++++++ diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_client_factory.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_client_factory.py index eb6ea54f039..9ad70be1422 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_client_factory.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_client_factory.py @@ -96,3 +96,7 @@ def cf_gallery_images(cli_ctx, _): def cf_gallery_image_versions(cli_ctx, _): return _compute_client_factory(cli_ctx).gallery_image_versions + + +def cf_proximity_placement_groups(cli_ctx, _): + return _compute_client_factory(cli_ctx).proximity_placement_groups diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_help.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_help.py index 53ce078845d..350d9224b3e 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_help.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/_help.py @@ -1922,3 +1922,28 @@ - name: Place the CLI in a waiting state until the VMSS instance has been updated. text: az vmss wait --updated --instance-id 1 --name MyScaleSet --resource-group MyResourceGroup """ + +helps['ppg'] = """ +type: group +short-summary: Manage Proximity Placement Groups +""" + +helps['ppg create'] = """ +type: command +short-summary: Create a proximity placement group +""" + +helps['ppg show'] = """ +type: command +short-summary: Get a proximity placement group +""" + +helps['ppg list'] = """ +type: command +short-summary: List proximity placement groups +""" + +helps['ppg update'] = """ +type: command +short-summary: Update a proximity placement group +""" 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 5ec32a448dd..294dfd47ba2 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 @@ -20,14 +20,18 @@ get_urn_aliases_completion_list, get_vm_size_completion_list, get_vm_run_command_completion_list) from azure.cli.command_modules.vm._validators import ( validate_nsg_name, validate_vm_nics, validate_vm_nic, validate_vm_disk, validate_vmss_disk, - validate_asg_names_or_ids, validate_keyvault, process_gallery_image_version_namespace) + validate_asg_names_or_ids, validate_keyvault, validate_proximity_placement_group, + process_gallery_image_version_namespace) + from ._vm_utils import MSI_LOCAL_ID # pylint: disable=too-many-statements, too-many-branches, too-many-locals def load_arguments(self, _): - StorageAccountTypes, UpgradeMode, CachingTypes = self.get_models('StorageAccountTypes', 'UpgradeMode', 'CachingTypes') - OperatingSystemTypes = self.get_models('OperatingSystemTypes') + # Model imports + StorageAccountTypes, DiskStorageAccountTypes, SnapshotStorageAccountTypes = self.get_models('StorageAccountTypes', 'DiskStorageAccountTypes', 'SnapshotStorageAccountTypes') + UpgradeMode, CachingTypes, OperatingSystemTypes = self.get_models('UpgradeMode', 'CachingTypes', 'OperatingSystemTypes') + ProximityPlacementGroupType, HyperVGenerationTypes, HyperVGeneration = self.get_models('ProximityPlacementGroupType', 'HyperVGenerationTypes', 'HyperVGeneration') # REUSABLE ARGUMENT DEFINITIONS name_arg_type = CLIArgumentType(options_list=['--name', '-n'], metavar='NAME') @@ -46,17 +50,33 @@ def load_arguments(self, _): extension_instance_name_type = CLIArgumentType(help="Name of the vm's instance of the extension. Default: name of the extension.") - if StorageAccountTypes: - disk_sku = CLIArgumentType(arg_type=get_enum_type(StorageAccountTypes)) + # StorageAccountTypes renamed to DiskStorageAccountTypes in 2018_06_01 of azure-mgmt-compute + DiskStorageAccountTypes = DiskStorageAccountTypes or StorageAccountTypes + + if DiskStorageAccountTypes: + disk_sku = CLIArgumentType(arg_type=get_enum_type(DiskStorageAccountTypes)) else: # StorageAccountTypes introduced in api version 2016_04_30_preview of Resource.MGMT.Compute package.. # However, 2017-03-09-profile targets version 2016-03-30 of compute package. disk_sku = CLIArgumentType(arg_type=get_enum_type(['Premium_LRS', 'Standard_LRS'])) + if SnapshotStorageAccountTypes: + snapshot_sku = CLIArgumentType(arg_type=get_enum_type(SnapshotStorageAccountTypes)) + else: + # SnapshotStorageAccountTypes introduced in api version 2018_04_01 of Resource.MGMT.Compute package.. + # However, 2017-03-09-profile targets version 2016-03-30 of compute package. + snapshot_sku = CLIArgumentType(arg_type=get_enum_type(['Premium_LRS', 'Standard_LRS'])) + # special case for `network nic scale-set list` command alias with self.argument_context('network nic scale-set list') as c: c.argument('virtual_machine_scale_set_name', options_list=['--vmss-name'], completer=get_resource_name_completion_list('Microsoft.Compute/virtualMachineScaleSets'), id_part='name') + HyperVGenerationTypes = HyperVGenerationTypes or HyperVGeneration + if HyperVGenerationTypes: + hyper_v_gen_sku = CLIArgumentType(arg_type=get_enum_type(HyperVGenerationTypes, default="V1")) + else: + hyper_v_gen_sku = CLIArgumentType(arg_type=get_enum_type(["V1", "V2"], default="V1")) + # region MixedScopes for scope in ['vm', 'disk', 'snapshot', 'image', 'sig']: with self.argument_context(scope) as c: @@ -72,7 +92,9 @@ def load_arguments(self, _): c.argument('access_level', arg_type=get_enum_type(['Read', 'Write']), default='Read', help='access level') c.argument('for_upload', arg_type=get_three_state_flag(), help='Create the {0} for uploading blobs later on through storage commands. Run "az {0} grant-access --access-level Write" to retrieve the {0}\'s SAS token.'.format(scope)) - c.argument('hyper_v_generation', help='The hypervisor generation of the Virtual Machine. Applicable to OS disks only. Possible values include: "V1", "V2"') + c.argument('hyper_v_generation', arg_type=hyper_v_gen_sku, help='The hypervisor generation of the Virtual Machine. Applicable to OS disks only.') + else: + c.ignore('access_level', 'for_upload', 'hyper_v_generation') for scope in ['disk create', 'snapshot create']: with self.argument_context(scope) as c: @@ -94,10 +116,7 @@ def load_arguments(self, _): with self.argument_context('snapshot', resource_type=ResourceType.MGMT_COMPUTE, operation_group='snapshots') as c: c.argument('snapshot_name', existing_snapshot_name, id_part='name', completer=get_resource_name_completion_list('Microsoft.Compute/snapshots')) c.argument('name', arg_type=name_arg_type) - if self.supported_api_version(min_api='2018-04-01', operation_group='snapshots'): - c.argument('sku', arg_type=get_enum_type(['Premium_LRS', 'Standard_LRS', 'Standard_ZRS'])) - else: - c.argument('sku', arg_type=get_enum_type(['Premium_LRS', 'Standard_LRS'])) + c.argument('sku', arg_type=snapshot_sku) # endregion # region Images @@ -115,6 +134,7 @@ def load_arguments(self, _): 'Default is false. Zone resilient images can be created only in regions that provide Zone Redundant Storage') c.argument('storage_sku', arg_type=disk_sku, help='The SKU of the storage account with which to create the VM image. Unused if source VM is specified.') c.argument('os_disk_caching', arg_type=get_enum_type(CachingTypes), help="Storage caching type for the image's OS disk.") + c.argument('hyper_v_generation', arg_type=hyper_v_gen_sku, min_api="2019-03-01", help='The hypervisor generation of the Virtual Machine created from the image.') c.ignore('source_virtual_machine', 'os_blob_uri', 'os_disk', 'os_snapshot', 'data_blob_uris', 'data_disks', 'data_snapshots') # endregion @@ -444,8 +464,8 @@ def load_arguments(self, _): 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: - allowed_values = ", ".join([sku.value for sku in StorageAccountTypes]) + if DiskStorageAccountTypes: + allowed_values = ", ".join([sku.value for sku in DiskStorageAccountTypes]) else: allowed_values = ", ".join(['Premium_LRS', 'Standard_LRS']) @@ -613,3 +633,17 @@ def load_arguments(self, _): 'If a replica count is not specified, the default replica count will be used. If a storage account type is not specified, the default storage account type will be used') c.argument('replica_count', help='The default number of replicas to be created per region. To set regional replication counts, use --target-regions', type=int) # endregion + + # region Proximity Placement Group + with self.argument_context('ppg', min_api='2018-04-01') as c: + c.argument('proximity_placement_group_name', arg_type=name_arg_type, help="The name of the proximity placement group.") + + with self.argument_context('ppg create', min_api='2018-04-01') as c: + c.argument('ppg_type', options_list=['--type', '-t'], arg_type=get_enum_type(ProximityPlacementGroupType), help="The type of the proximity placement group.") + c.argument('tags', tags_type) + + for scope, item in [('vm create', 'VM'), ('vmss create', 'VMSS'), ('vm availability-set create', 'availability set')]: + with self.argument_context(scope, min_api='2018-04-01') as c: + c.argument('proximity_placement_group', options_list=['--ppg'], help="The name or ID of the proximity placement group the {} should be associated with.".format(item), + validator=validate_proximity_placement_group) # only availability set does not have a command level validator, so this should be added. + # endregion 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 4c66d654eca..8fb8b9fbda3 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 @@ -247,7 +247,7 @@ def build_vm_resource( # pylint: disable=too-many-locals 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): + disk_info=None, boot_diagnostics_storage_uri=None, ultra_ssd_enabled=None, proximity_placement_group=None): os_caching = disk_info['os'].get('caching') @@ -389,6 +389,9 @@ def _build_storage_profile(): if ultra_ssd_enabled is not None: vm_properties['additionalCapabilities'] = {'ultraSSDEnabled': ultra_ssd_enabled} + if proximity_placement_group: + vm_properties['proximityPlacementGroup'] = {'id': proximity_placement_group} + vm = { 'apiVersion': cmd.get_api_version(ResourceType.MGMT_COMPUTE, operation_group='virtual_machines'), 'type': 'Microsoft.Compute/virtualMachines', @@ -616,7 +619,7 @@ def build_vmss_resource(cmd, name, naming_prefix, location, tags, overprovision, backend_address_pool_id=None, inbound_nat_pool_id=None, health_probe=None, single_placement_group=None, platform_fault_domain_count=None, custom_data=None, secrets=None, license_type=None, zones=None, priority=None, eviction_policy=None, - application_security_groups=None, ultra_ssd_enabled=None): + application_security_groups=None, ultra_ssd_enabled=None, proximity_placement_group=None): # Build IP configuration ip_configuration = { @@ -782,6 +785,9 @@ def build_vmss_resource(cmd, name, naming_prefix, location, tags, overprovision, if ultra_ssd_enabled is not None: vmss_properties['virtualMachineProfile']['additionalCapabilities'] = {'ultraSSDEnabled': ultra_ssd_enabled} + if proximity_placement_group: + vmss_properties['proximityPlacementGroup'] = {'id': proximity_placement_group} + vmss = { 'type': 'Microsoft.Compute/virtualMachineScaleSets', 'name': name, @@ -800,8 +806,8 @@ def build_vmss_resource(cmd, name, naming_prefix, location, tags, overprovision, return vmss -def build_av_set_resource(cmd, name, location, tags, - platform_update_domain_count, platform_fault_domain_count, unmanaged): +def build_av_set_resource(cmd, name, location, tags, platform_update_domain_count, + platform_fault_domain_count, unmanaged, proximity_placement_group=None): av_set = { 'type': 'Microsoft.Compute/availabilitySets', 'name': name, @@ -822,4 +828,7 @@ def build_av_set_resource(cmd, name, location, tags, if platform_update_domain_count is not None: av_set['properties']['platformUpdateDomainCount'] = platform_update_domain_count + if proximity_placement_group: + av_set['properties']['proximityPlacementGroup'] = {'id': proximity_placement_group} + return av_set 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 d3c63ea75ec..8c104b2540d 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 @@ -68,6 +68,21 @@ def validate_keyvault(cmd, namespace): 'vaults', 'Microsoft.KeyVault') +def validate_proximity_placement_group(cmd, namespace): + from msrestazure.tools import parse_resource_id + + if namespace.proximity_placement_group: + namespace.proximity_placement_group = _get_resource_id(cmd.cli_ctx, namespace.proximity_placement_group, + namespace.resource_group_name, + 'proximityPlacementGroups', 'Microsoft.Compute') + + parsed = parse_resource_id(namespace.proximity_placement_group) + rg, name = parsed['resource_group'], parsed['name'] + + if not check_existence(cmd.cli_ctx, name, rg, 'Microsoft.Compute', 'proximityPlacementGroups'): + raise CLIError("Proximity Placement Group '{}' does not exist.".format(name)) + + def process_vm_secret_format(cmd, namespace): from msrestazure.tools import is_valid_resource_id from azure.cli.core._output import (get_output_format, set_output_format) @@ -1027,6 +1042,8 @@ def process_vm_create_namespace(cmd, namespace): _validate_vm_create_nics(cmd, namespace) _validate_vm_vmss_accelerated_networking(cmd.cli_ctx, namespace) _validate_vm_vmss_create_auth(namespace) + validate_proximity_placement_group(cmd, namespace) + if namespace.secrets: _validate_secrets(namespace.secrets, namespace.os_type) if namespace.license_type and namespace.os_type.lower() != 'windows': @@ -1212,6 +1229,7 @@ def process_vmss_create_namespace(cmd, namespace): _validate_vm_vmss_accelerated_networking(cmd.cli_ctx, namespace) _validate_vm_vmss_create_auth(namespace) _validate_vm_vmss_msi(cmd, namespace) + validate_proximity_placement_group(cmd, namespace) if namespace.secrets: _validate_secrets(namespace.secrets, namespace.os_type) diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/commands.py b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/commands.py index 67268611ba3..6644dbb598c 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/commands.py +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/commands.py @@ -10,7 +10,8 @@ cf_vm_sizes, cf_disks, cf_snapshots, cf_images, cf_run_commands, cf_rolling_upgrade_commands, cf_galleries, - cf_gallery_images, cf_gallery_image_versions) + cf_gallery_images, cf_gallery_image_versions, + cf_proximity_placement_groups) from azure.cli.command_modules.vm._format import ( transform_ip_addresses, transform_vm, transform_vm_create_output, transform_vm_usage_list, transform_vm_list, transform_sku_for_table_output, transform_disk_show_table_output, transform_extension_show_table_output, @@ -131,6 +132,10 @@ def load_command_table(self, _): client_factory=cf_gallery_image_versions, ) + compute_proximity_placement_groups_sdk = CliCommandType( + operations_tmpl='azure.mgmt.compute.operations#ProximityPlacementGroupsOperations.{}' + ) + with self.command_group('disk', compute_disk_sdk, operation_group='disks', min_api='2017-03-30') as g: g.custom_command('create', 'create_managed_disk', supports_no_wait=True, table_transformer=transform_disk_show_table_output, validator=process_disk_or_snapshot_create_namespace) g.command('delete', 'delete', supports_no_wait=True, confirmation=True) @@ -350,3 +355,10 @@ def load_command_table(self, _): g.custom_command('create', 'create_image_version', supports_no_wait=True) g.generic_update_command('update', setter_arg_name='gallery_image_version', custom_func_name='update_image_version', supports_no_wait=True) g.wait_command('wait') + + with self.command_group('ppg', compute_proximity_placement_groups_sdk, min_api='2018-04-01', client_factory=cf_proximity_placement_groups) as g: + g.command('show', 'get') + g.custom_command('create', 'create_proximity_placement_group') + g.custom_command('list', 'list_proximity_placement_groups') + g.generic_update_command('update') + g.command('delete', 'delete') 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 22c2b4b4122..a28518c36ef 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 @@ -314,7 +314,7 @@ def update_managed_disk(cmd, instance, size_gb=None, sku=None, disk_iops_read_wr # region Images (Managed) def create_image(cmd, resource_group_name, name, source, os_type=None, data_disk_sources=None, location=None, # pylint: disable=too-many-locals,unused-argument # below are generated internally from 'source' and 'data_disk_sources' - source_virtual_machine=None, storage_sku=None, + source_virtual_machine=None, storage_sku=None, hyper_v_generation=None, os_blob_uri=None, data_blob_uris=None, os_snapshot=None, data_snapshots=None, os_disk=None, os_disk_caching=None, data_disks=None, tags=None, zone_resilient=None): @@ -356,6 +356,9 @@ def create_image(cmd, resource_group_name, name, source, os_type=None, data_disk # pylint disable=no-member image = Image(location=location, storage_profile=image_storage_profile, tags=(tags or {})) + if hyper_v_generation: + image.hyper_vgeneration = hyper_v_generation + client = _compute_client_factory(cmd.cli_ctx) return client.images.create_or_update(resource_group_name, name, image) @@ -513,7 +516,7 @@ def create_vm(cmd, vm_name, resource_group_name, image=None, size='Standard_DS1_ plan_promotion_code=None, license_type=None, assign_identity=None, identity_scope=None, identity_role='Contributor', identity_role_id=None, application_security_groups=None, zone=None, boot_diagnostics_storage=None, ultra_ssd_enabled=None, ephemeral_os_disk=None, - aux_subscriptions=None): + proximity_placement_group=None, aux_subscriptions=None): from azure.cli.core.commands.client_factory import get_subscription_id from azure.cli.core.util import random_string, hash_string from azure.cli.core.commands.arm import ArmTemplateBuilder @@ -632,7 +635,9 @@ def create_vm(cmd, vm_name, resource_group_name, image=None, size='Standard_DS1_ 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, - boot_diagnostics_storage_uri=boot_diagnostics_storage, ultra_ssd_enabled=ultra_ssd_enabled) + boot_diagnostics_storage_uri=boot_diagnostics_storage, ultra_ssd_enabled=ultra_ssd_enabled, + proximity_placement_group=proximity_placement_group) + vm_resource['dependsOn'] = vm_dependencies if plan_name: @@ -988,10 +993,9 @@ def convert_av_set_to_managed_disk(cmd, resource_group_name, availability_set_na logger.warning('Availability set %s is already configured for managed disks.', availability_set_name) -def create_av_set(cmd, availability_set_name, resource_group_name, - platform_fault_domain_count=2, platform_update_domain_count=None, - location=None, no_wait=False, - unmanaged=False, tags=None, validate=False): +def create_av_set(cmd, availability_set_name, resource_group_name, platform_fault_domain_count=2, + platform_update_domain_count=None, location=None, proximity_placement_group=None, unmanaged=False, + no_wait=False, tags=None, validate=False): from azure.cli.core.util import random_string from azure.cli.core.commands.arm import ArmTemplateBuilder from azure.cli.command_modules.vm._template_builder import build_av_set_resource @@ -1003,7 +1007,8 @@ def create_av_set(cmd, availability_set_name, resource_group_name, av_set_resource = build_av_set_resource(cmd, availability_set_name, location, tags, platform_update_domain_count, - platform_fault_domain_count, unmanaged) + platform_fault_domain_count, unmanaged, + proximity_placement_group=proximity_placement_group) master_template.add_resource(av_set_resource) template = master_template.build() @@ -1852,7 +1857,7 @@ def create_vmss(cmd, vmss_name, resource_group_name, image, assign_identity=None, identity_scope=None, identity_role='Contributor', identity_role_id=None, zones=None, priority=None, eviction_policy=None, application_security_groups=None, ultra_ssd_enabled=None, ephemeral_os_disk=None, - aux_subscriptions=None): + proximity_placement_group=None, aux_subscriptions=None): from azure.cli.core.commands.client_factory import get_subscription_id from azure.cli.core.util import random_string, hash_string from azure.cli.core.commands.arm import ArmTemplateBuilder @@ -2056,7 +2061,7 @@ def _get_public_ip_address_allocation(value, sku): single_placement_group=single_placement_group, platform_fault_domain_count=platform_fault_domain_count, custom_data=custom_data, secrets=secrets, license_type=license_type, zones=zones, priority=priority, eviction_policy=eviction_policy, application_security_groups=application_security_groups, - ultra_ssd_enabled=ultra_ssd_enabled) + ultra_ssd_enabled=ultra_ssd_enabled, proximity_placement_group=proximity_placement_group) vmss_resource['dependsOn'] = vmss_dependencies if plan_name: @@ -2612,3 +2617,24 @@ def update_image_version(instance, target_regions=None, replica_count=None): instance.publishing_profile.replica_count = replica_count return instance # endregion + + +# region Proximity Placement Group +def create_proximity_placement_group(cmd, client, proximity_placement_group_name, resource_group_name, + ppg_type, location=None, tags=None): + location = location or _get_resource_group_location(cmd.cli_ctx, resource_group_name) + + ProximityPlacementGroup = cmd.get_models('ProximityPlacementGroup') + + ppg_params = ProximityPlacementGroup(name=proximity_placement_group_name, proximity_placement_group_type=ppg_type, + location=location, tags=(tags or {})) + + return client.create_or_update(resource_group_name=resource_group_name, + proximity_placement_group_name=proximity_placement_group_name, parameters=ppg_params) + + +def list_proximity_placement_groups(client, resource_group_name=None): + if resource_group_name: + return client.list_by_resource_group(resource_group_name=resource_group_name) + return client.list_by_subscription() +# endregion diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml index c28722b32ac..99cf604f622 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "eastus2", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-04-17T04:05:05Z"}}' + "date": "2019-04-30T01:07:35Z"}}' headers: Accept: - application/json @@ -18,15 +18,15 @@ interactions: ParameterSetName: - --location --name --tag User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-17T04:05:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -35,7 +35,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:05:10 GMT + - Tue, 30 Apr 2019 01:07:38 GMT expires: - '-1' pragma: @@ -63,15 +63,15 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-17T04:05:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -80,7 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:05:11 GMT + - Tue, 30 Apr 2019 01:07:40 GMT expires: - '-1' pragma: @@ -112,8 +112,8 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT @@ -127,7 +127,7 @@ interactions: \r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/67ac8860-c927-4e0f-8b58-4fdfe0690db3?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/70580ff8-adab-4121-b6ad-ecc6022a2d7d?api-version=2019-03-01 cache-control: - no-cache content-length: @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:05:13 GMT + - Tue, 30 Apr 2019 01:07:41 GMT expires: - '-1' pragma: @@ -166,24 +166,24 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/67ac8860-c927-4e0f-8b58-4fdfe0690db3?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/70580ff8-adab-4121-b6ad-ecc6022a2d7d?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:05:13.4780146+00:00\",\r\n \"\ - endTime\": \"2019-04-17T04:05:14.5561655+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"67ac8860-c927-4e0f-8b58-4fdfe0690db3\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:07:41.912664+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:07:42.9439174+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"70580ff8-adab-4121-b6ad-ecc6022a2d7d\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:05:43 GMT + - Tue, 30 Apr 2019 01:08:12 GMT expires: - '-1' pragma: @@ -216,8 +216,8 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1?api-version=2019-03-01 response: @@ -235,7 +235,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:05:44 GMT + - Tue, 30 Apr 2019 01:08:13 GMT expires: - '-1' pragma: @@ -268,8 +268,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -278,7 +278,7 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\"\ ,\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/galleries/gallery1\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/galleries/gallery1\"\ ,\r\n \"name\": \"gallery1\",\r\n \"properties\": {\r\n \"\ identifier\": {\r\n \"uniqueName\": \"00977cdb-163f-435f-9c32-39ec8ae61f4d-GALLERY1\"\ \r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\ @@ -291,7 +291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:05:46 GMT + - Tue, 30 Apr 2019 01:08:13 GMT expires: - '-1' pragma: @@ -324,8 +324,8 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -345,7 +345,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:05:47 GMT + - Tue, 30 Apr 2019 01:08:14 GMT expires: - '-1' pragma: @@ -378,15 +378,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-17T04:05:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -395,7 +395,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:05:48 GMT + - Tue, 30 Apr 2019 01:08:14 GMT expires: - '-1' pragma: @@ -429,8 +429,8 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT @@ -446,7 +446,7 @@ interactions: \r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/57462ed7-aaf4-4e30-8a0b-756da03079d7?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/fe6037d3-4d1d-4915-82fa-b04116f173a2?api-version=2019-03-01 cache-control: - no-cache content-length: @@ -454,7 +454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:05:50 GMT + - Tue, 30 Apr 2019 01:08:16 GMT expires: - '-1' pragma: @@ -485,15 +485,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/57462ed7-aaf4-4e30-8a0b-756da03079d7?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/fe6037d3-4d1d-4915-82fa-b04116f173a2?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:05:49.8072945+00:00\",\r\n \"\ - endTime\": \"2019-04-17T04:05:50.8385775+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"57462ed7-aaf4-4e30-8a0b-756da03079d7\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:08:16.5082288+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:08:17.4457306+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"fe6037d3-4d1d-4915-82fa-b04116f173a2\"\r\n}" headers: cache-control: - no-cache @@ -502,7 +502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:06:20 GMT + - Tue, 30 Apr 2019 01:08:46 GMT expires: - '-1' pragma: @@ -535,8 +535,8 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --os-type -p -f -s User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1?api-version=2019-03-01 response: @@ -556,7 +556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:06:20 GMT + - Tue, 30 Apr 2019 01:08:47 GMT expires: - '-1' pragma: @@ -589,8 +589,8 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -613,7 +613,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:06:22 GMT + - Tue, 30 Apr 2019 01:08:49 GMT expires: - '-1' pragma: @@ -646,8 +646,8 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -669,7 +669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:06:23 GMT + - Tue, 30 Apr 2019 01:08:50 GMT expires: - '-1' pragma: @@ -702,15 +702,15 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-17T04:05:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -719,7 +719,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:06:23 GMT + - Tue, 30 Apr 2019 01:08:50 GMT expires: - '-1' pragma: @@ -802,13 +802,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Wed, 17 Apr 2019 04:06:24 GMT + - Tue, 30 Apr 2019 01:08:51 GMT etag: - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' expires: - - Wed, 17 Apr 2019 04:11:24 GMT + - Tue, 30 Apr 2019 01:13:51 GMT source-age: - - '5' + - '275' strict-transport-security: - max-age=31536000 vary: @@ -822,17 +822,17 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - e5892594cd0db299837087063d8ec0e8648d9590 + - f9efe5f60f1d3359e8bc0b1631f5801e64655c0c x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - C14E:3BB9:4AED1F:50FC3A:5CB6A63B + - E152:0E13:84575:9A924:5CC79F0E x-served-by: - - cache-sea1034-SEA + - cache-dfw18634-DFW x-timer: - - S1555473985.577611,VS0,VE1 + - S1556586531.052110,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -852,8 +852,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -869,7 +869,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:06:25 GMT + - Tue, 30 Apr 2019 01:08:50 GMT expires: - '-1' pragma: @@ -932,26 +932,26 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_3x9LCQnj0yKir5zzZegsKEv56gQfNiMZ","name":"vm_deploy_3x9LCQnj0yKir5zzZegsKEv56gQfNiMZ","properties":{"templateHash":"5868198862872692067","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-17T04:06:29.6685353Z","duration":"PT2.039818S","correlationId":"6ac7f489-4c03-4898-a8c6-68e8e7fd335e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna","name":"vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna","properties":{"templateHash":"3313627070546081169","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:08:55.6165588Z","duration":"PT1.9054815S","correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_3x9LCQnj0yKir5zzZegsKEv56gQfNiMZ/operationStatuses/08586461328978489076?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna/operationStatuses/08586450203517665470?api-version=2018-05-01 cache-control: - no-cache content-length: - - '2705' + - '2706' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:06:30 GMT + - Tue, 30 Apr 2019 01:08:55 GMT expires: - '-1' pragma: @@ -981,12 +981,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A06%3A33Z%20and%20correlationId%20eq%20%276ac7f489-4c03-4898-a8c6-68e8e7fd335e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A01Z%20and%20correlationId%20eq%20%2715c89ebb-7c11-4f11-8b49-6216c5e6204c%27 response: body: string: '{"value":[]}' @@ -998,7 +998,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:06:36 GMT + - Tue, 30 Apr 2019 01:09:01 GMT expires: - '-1' pragma: @@ -1032,12 +1032,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A06%3A43Z%20and%20correlationId%20eq%20%276ac7f489-4c03-4898-a8c6-68e8e7fd335e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A12Z%20and%20correlationId%20eq%20%2715c89ebb-7c11-4f11-8b49-6216c5e6204c%27 response: body: string: '{"value":[]}' @@ -1049,7 +1049,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:06:46 GMT + - Tue, 30 Apr 2019 01:09:11 GMT expires: - '-1' pragma: @@ -1083,24 +1083,36 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A06%3A54Z%20and%20correlationId%20eq%20%276ac7f489-4c03-4898-a8c6-68e8e7fd335e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A22Z%20and%20correlationId%20eq%20%2715c89ebb-7c11-4f11-8b49-6216c5e6204c%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"84401676-15e3-419a-8da3-4304dc8de778","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/84401676-15e3-419a-8da3-4304dc8de778/ticks/636921833458423110","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"206585d8-da2b-4746-95fd-fa5ed1ffd8a2","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:05.842311Z","submissionTimestamp":"2019-04-30T01:09:20.0765135Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"03733572-4d48-4e60-a4d1-c1319ae4c947","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bf7cbd64-ad63-49d9-9d2e-1fb7c8cd5e58","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/03733572-4d48-4e60-a4d1-c1319ae4c947/ticks/636921833383065017","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4ee9ffbc-7a41-4df1-bdff-9630996ce87d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:58.3065017Z","submissionTimestamp":"2019-04-30T01:09:19.0859416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"233f49ad-1017-400e-bbae-026ed7bce4da","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5109f0a-b8d3-4c23-a796-ed93e7bde5bc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/233f49ad-1017-400e-bbae-026ed7bce4da/ticks/636921833383065017","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f4f55779-a996-4288-9d2e-4d8786f848a2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:58.3065017Z","submissionTimestamp":"2019-04-30T01:09:19.0859416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"248934b2-0c81-4d50-8dd3-9c1152171eb4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0e5cfba2-2bdc-4711-8a00-ef2d7abd8bda","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/248934b2-0c81-4d50-8dd3-9c1152171eb4/ticks/636921833382815029","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a4d8fe4b-42f3-4731-a8df-9e8044a48e3e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:58.2815029Z","submissionTimestamp":"2019-04-30T01:09:19.0859416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '12' + - '15212' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:06:56 GMT + - Tue, 30 Apr 2019 01:09:22 GMT expires: - '-1' pragma: @@ -1132,10 +1144,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461328978489076?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450203517665470?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1147,7 +1159,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:07:00 GMT + - Tue, 30 Apr 2019 01:09:26 GMT expires: - '-1' pragma: @@ -1177,24 +1189,94 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A07%3A04Z%20and%20correlationId%20eq%20%276ac7f489-4c03-4898-a8c6-68e8e7fd335e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A32Z%20and%20correlationId%20eq%20%2715c89ebb-7c11-4f11-8b49-6216c5e6204c%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"1c03aa59-f187-4c13-aa81-75288091e52e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1c03aa59-f187-4c13-aa81-75288091e52e/ticks/636921833484522019","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ddb2cbc-a3ec-417d-a458-3f4b3ce4f428","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:08.4522019Z","submissionTimestamp":"2019-04-30T01:09:26.0970619Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"af311f25-cc39-4b4e-9efc-d14192ae9c8c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4b15f62-ab97-4af7-9c5c-0d670e5be358","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b/events/af311f25-cc39-4b4e-9efc-d14192ae9c8c/ticks/636921833483590473","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"f83a36e9-ffef-4883-9673-c824a8b8ebc6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"e7c6985b-af0e-45bf-93a2-e7bab6e7d825"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:09:08.3590473Z","submissionTimestamp":"2019-04-30T01:09:24.0742242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"6abdcd65-25ca-478f-8b41-6ebb9b549b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eed9eff0-c4f6-4f74-beac-49f96597cc5a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6abdcd65-25ca-478f-8b41-6ebb9b549b77/ticks/636921833483128931","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8175c33b-809b-47c3-81de-7c095e087eff","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"1cbe3e43-98b9-4bbf-80fc-34ff31085834"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:09:08.3128931Z","submissionTimestamp":"2019-04-30T01:09:29.0926649Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"7640428e-2f2b-4049-8b55-883e4cb1234b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/7640428e-2f2b-4049-8b55-883e4cb1234b/ticks/636921833482329191","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8175c33b-809b-47c3-81de-7c095e087eff","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:08.2329191Z","submissionTimestamp":"2019-04-30T01:09:29.0926649Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"79b8f501-9b1a-404d-a2d7-61675ef331ca","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4b15f62-ab97-4af7-9c5c-0d670e5be358","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b/events/79b8f501-9b1a-404d-a2d7-61675ef331ca/ticks/636921833481590566","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"f83a36e9-ffef-4883-9673-c824a8b8ebc6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:08.1590566Z","submissionTimestamp":"2019-04-30T01:09:24.0742242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"973ac777-d2b7-4755-846f-a24a982210d7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eed9eff0-c4f6-4f74-beac-49f96597cc5a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/973ac777-d2b7-4755-846f-a24a982210d7/ticks/636921833469628926","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8175c33b-809b-47c3-81de-7c095e087eff","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:06.9628926Z","submissionTimestamp":"2019-04-30T01:09:29.0926649Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"7ba9d8e5-fc5f-4ac3-8e02-c1491760a92c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/7ba9d8e5-fc5f-4ac3-8e02-c1491760a92c/ticks/636921833462664998","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"a8221388-defb-4bc4-80b7-13b2cbafdf2d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:06.2664998Z","submissionTimestamp":"2019-04-30T01:09:22.998265Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"ad7a93ec-4441-4bb9-8dee-ff6d479ca21f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fc5acbfe-7edb-4ee9-9f0c-2577e738b09e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/ad7a93ec-4441-4bb9-8dee-ff6d479ca21f/ticks/636921833461778969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"b3754444-fdd1-497e-95fd-5a26cbc6d1a5","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"dd1bab8d-4070-4e37-abb5-2a6f31fb4a86","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"82239eaa-1d2c-4a7a-a0f4-438b987f3637\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"09780d14-2b00-433d-939a-4a4f05e815cd\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"82239eaa-1d2c-4a7a-a0f4-438b987f3637\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:09:06.1778969Z","submissionTimestamp":"2019-04-30T01:09:29.0926649Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"84401676-15e3-419a-8da3-4304dc8de778","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/84401676-15e3-419a-8da3-4304dc8de778/ticks/636921833458423110","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"206585d8-da2b-4746-95fd-fa5ed1ffd8a2","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:05.842311Z","submissionTimestamp":"2019-04-30T01:09:20.0765135Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"35f7db1d-a85e-4522-8c61-c7576c29dbbf","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fc5acbfe-7edb-4ee9-9f0c-2577e738b09e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/35f7db1d-a85e-4522-8c61-c7576c29dbbf/ticks/636921833452079086","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"b3754444-fdd1-497e-95fd-5a26cbc6d1a5","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:05.2079086Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"aa1be0d6-3ecb-49e2-a7af-9858cf96aefb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5109f0a-b8d3-4c23-a796-ed93e7bde5bc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/aa1be0d6-3ecb-49e2-a7af-9858cf96aefb/ticks/636921833398671539","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f4f55779-a996-4288-9d2e-4d8786f848a2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"b613ab23-6aab-4e52-a46e-dd8fca893737","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"229498a4-ca46-4bbc-ad85-53588a462e12\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"6685705c-20f7-45e2-ada2-7a5e87ea7345\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:59.8671539Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"9f5d7370-fa35-4f60-ad00-e7bbf898a872","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bf7cbd64-ad63-49d9-9d2e-1fb7c8cd5e58","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/9f5d7370-fa35-4f60-ad00-e7bbf898a872/ticks/636921833397971351","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4ee9ffbc-7a41-4df1-bdff-9630996ce87d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9e00c64b-1eed-492a-a513-3352191cfe81","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e28744cb-385d-4e76-a683-47273e95a1dd\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:59.7971351Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"b8aa24ce-9ccb-449a-a8a6-0fe1ee37bc0b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0e5cfba2-2bdc-4711-8a00-ef2d7abd8bda","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/b8aa24ce-9ccb-449a-a8a6-0fe1ee37bc0b/ticks/636921833397921523","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a4d8fe4b-42f3-4731-a8df-9e8044a48e3e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"63697ae2-fc08-49b4-8651-d2b46e17412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"80eee6e8-6cde-4e22-adb4-d691124a3cb8\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"fbffdbc7-470a-4d45-97d7-bba767ca80de\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"80eee6e8-6cde-4e22-adb4-d691124a3cb8\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:59.7921523Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"91058942-3b51-4096-a46d-81140b600a6e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/91058942-3b51-4096-a46d-81140b600a6e/ticks/636921833397171163","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f4f55779-a996-4288-9d2e-4d8786f848a2","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:59.7171163Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"07e8543f-876e-4911-bc73-cd07a9e90d60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/07e8543f-876e-4911-bc73-cd07a9e90d60/ticks/636921833397121160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a4d8fe4b-42f3-4731-a8df-9e8044a48e3e","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:59.712116Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"03733572-4d48-4e60-a4d1-c1319ae4c947","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bf7cbd64-ad63-49d9-9d2e-1fb7c8cd5e58","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/03733572-4d48-4e60-a4d1-c1319ae4c947/ticks/636921833383065017","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4ee9ffbc-7a41-4df1-bdff-9630996ce87d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:58.3065017Z","submissionTimestamp":"2019-04-30T01:09:19.0859416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"233f49ad-1017-400e-bbae-026ed7bce4da","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5109f0a-b8d3-4c23-a796-ed93e7bde5bc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/233f49ad-1017-400e-bbae-026ed7bce4da/ticks/636921833383065017","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f4f55779-a996-4288-9d2e-4d8786f848a2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:58.3065017Z","submissionTimestamp":"2019-04-30T01:09:19.0859416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"248934b2-0c81-4d50-8dd3-9c1152171eb4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0e5cfba2-2bdc-4711-8a00-ef2d7abd8bda","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/248934b2-0c81-4d50-8dd3-9c1152171eb4/ticks/636921833382815029","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a4d8fe4b-42f3-4731-a8df-9e8044a48e3e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:58.2815029Z","submissionTimestamp":"2019-04-30T01:09:19.0859416Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"006e5e95-e504-4f31-9b6b-b013df4f9cdb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"83ab78fa-6ae4-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna/events/006e5e95-e504-4f31-9b6b-b013df4f9cdb/ticks/636921833366296349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:56.6296349Z","submissionTimestamp":"2019-04-30T01:09:15.1460224Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"2228a9d3-cf62-4ddd-a359-51c96d139271","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"83ab78fa-6ae4-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna/events/2228a9d3-cf62-4ddd-a359-51c96d139271/ticks/636921833317245715","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:51.7245715Z","submissionTimestamp":"2019-04-30T01:09:15.1450213Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '12' + - '82361' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:07:07 GMT + - Tue, 30 Apr 2019 01:09:32 GMT expires: - '-1' pragma: @@ -1228,24 +1310,94 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A07%3A14Z%20and%20correlationId%20eq%20%276ac7f489-4c03-4898-a8c6-68e8e7fd335e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A43Z%20and%20correlationId%20eq%20%2715c89ebb-7c11-4f11-8b49-6216c5e6204c%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"1c03aa59-f187-4c13-aa81-75288091e52e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1c03aa59-f187-4c13-aa81-75288091e52e/ticks/636921833484522019","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ddb2cbc-a3ec-417d-a458-3f4b3ce4f428","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:08.4522019Z","submissionTimestamp":"2019-04-30T01:09:26.0970619Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"af311f25-cc39-4b4e-9efc-d14192ae9c8c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4b15f62-ab97-4af7-9c5c-0d670e5be358","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b/events/af311f25-cc39-4b4e-9efc-d14192ae9c8c/ticks/636921833483590473","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"f83a36e9-ffef-4883-9673-c824a8b8ebc6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"e7c6985b-af0e-45bf-93a2-e7bab6e7d825"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:09:08.3590473Z","submissionTimestamp":"2019-04-30T01:09:24.0742242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"6abdcd65-25ca-478f-8b41-6ebb9b549b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eed9eff0-c4f6-4f74-beac-49f96597cc5a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6abdcd65-25ca-478f-8b41-6ebb9b549b77/ticks/636921833483128931","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8175c33b-809b-47c3-81de-7c095e087eff","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"1cbe3e43-98b9-4bbf-80fc-34ff31085834"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:09:08.3128931Z","submissionTimestamp":"2019-04-30T01:09:29.0926649Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"7640428e-2f2b-4049-8b55-883e4cb1234b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/7640428e-2f2b-4049-8b55-883e4cb1234b/ticks/636921833482329191","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8175c33b-809b-47c3-81de-7c095e087eff","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:08.2329191Z","submissionTimestamp":"2019-04-30T01:09:29.0926649Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"79b8f501-9b1a-404d-a2d7-61675ef331ca","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4b15f62-ab97-4af7-9c5c-0d670e5be358","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b/events/79b8f501-9b1a-404d-a2d7-61675ef331ca/ticks/636921833481590566","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"f83a36e9-ffef-4883-9673-c824a8b8ebc6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:08.1590566Z","submissionTimestamp":"2019-04-30T01:09:24.0742242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"973ac777-d2b7-4755-846f-a24a982210d7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eed9eff0-c4f6-4f74-beac-49f96597cc5a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/973ac777-d2b7-4755-846f-a24a982210d7/ticks/636921833469628926","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8175c33b-809b-47c3-81de-7c095e087eff","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:06.9628926Z","submissionTimestamp":"2019-04-30T01:09:29.0926649Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"7ba9d8e5-fc5f-4ac3-8e02-c1491760a92c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/7ba9d8e5-fc5f-4ac3-8e02-c1491760a92c/ticks/636921833462664998","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"a8221388-defb-4bc4-80b7-13b2cbafdf2d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:06.2664998Z","submissionTimestamp":"2019-04-30T01:09:22.998265Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"ad7a93ec-4441-4bb9-8dee-ff6d479ca21f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fc5acbfe-7edb-4ee9-9f0c-2577e738b09e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/ad7a93ec-4441-4bb9-8dee-ff6d479ca21f/ticks/636921833461778969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"b3754444-fdd1-497e-95fd-5a26cbc6d1a5","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"dd1bab8d-4070-4e37-abb5-2a6f31fb4a86","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"82239eaa-1d2c-4a7a-a0f4-438b987f3637\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"09780d14-2b00-433d-939a-4a4f05e815cd\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"82239eaa-1d2c-4a7a-a0f4-438b987f3637\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:09:06.1778969Z","submissionTimestamp":"2019-04-30T01:09:29.0926649Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"84401676-15e3-419a-8da3-4304dc8de778","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/84401676-15e3-419a-8da3-4304dc8de778/ticks/636921833458423110","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"206585d8-da2b-4746-95fd-fa5ed1ffd8a2","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:05.842311Z","submissionTimestamp":"2019-04-30T01:09:20.0765135Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"35f7db1d-a85e-4522-8c61-c7576c29dbbf","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fc5acbfe-7edb-4ee9-9f0c-2577e738b09e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/35f7db1d-a85e-4522-8c61-c7576c29dbbf/ticks/636921833452079086","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"b3754444-fdd1-497e-95fd-5a26cbc6d1a5","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:05.2079086Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"aa1be0d6-3ecb-49e2-a7af-9858cf96aefb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5109f0a-b8d3-4c23-a796-ed93e7bde5bc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/aa1be0d6-3ecb-49e2-a7af-9858cf96aefb/ticks/636921833398671539","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f4f55779-a996-4288-9d2e-4d8786f848a2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"b613ab23-6aab-4e52-a46e-dd8fca893737","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"229498a4-ca46-4bbc-ad85-53588a462e12\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"6685705c-20f7-45e2-ada2-7a5e87ea7345\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:59.8671539Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"9f5d7370-fa35-4f60-ad00-e7bbf898a872","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bf7cbd64-ad63-49d9-9d2e-1fb7c8cd5e58","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/9f5d7370-fa35-4f60-ad00-e7bbf898a872/ticks/636921833397971351","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4ee9ffbc-7a41-4df1-bdff-9630996ce87d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9e00c64b-1eed-492a-a513-3352191cfe81","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e28744cb-385d-4e76-a683-47273e95a1dd\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:59.7971351Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"b8aa24ce-9ccb-449a-a8a6-0fe1ee37bc0b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0e5cfba2-2bdc-4711-8a00-ef2d7abd8bda","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/b8aa24ce-9ccb-449a-a8a6-0fe1ee37bc0b/ticks/636921833397921523","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a4d8fe4b-42f3-4731-a8df-9e8044a48e3e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"63697ae2-fc08-49b4-8651-d2b46e17412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"80eee6e8-6cde-4e22-adb4-d691124a3cb8\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"fbffdbc7-470a-4d45-97d7-bba767ca80de\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"80eee6e8-6cde-4e22-adb4-d691124a3cb8\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:59.7921523Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"91058942-3b51-4096-a46d-81140b600a6e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/91058942-3b51-4096-a46d-81140b600a6e/ticks/636921833397171163","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f4f55779-a996-4288-9d2e-4d8786f848a2","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:59.7171163Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"07e8543f-876e-4911-bc73-cd07a9e90d60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/07e8543f-876e-4911-bc73-cd07a9e90d60/ticks/636921833397121160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a4d8fe4b-42f3-4731-a8df-9e8044a48e3e","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:59.712116Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"03733572-4d48-4e60-a4d1-c1319ae4c947","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bf7cbd64-ad63-49d9-9d2e-1fb7c8cd5e58","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/03733572-4d48-4e60-a4d1-c1319ae4c947/ticks/636921833383065017","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4ee9ffbc-7a41-4df1-bdff-9630996ce87d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:58.3065017Z","submissionTimestamp":"2019-04-30T01:09:19.0859416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"233f49ad-1017-400e-bbae-026ed7bce4da","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5109f0a-b8d3-4c23-a796-ed93e7bde5bc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/233f49ad-1017-400e-bbae-026ed7bce4da/ticks/636921833383065017","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f4f55779-a996-4288-9d2e-4d8786f848a2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:58.3065017Z","submissionTimestamp":"2019-04-30T01:09:19.0859416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"248934b2-0c81-4d50-8dd3-9c1152171eb4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0e5cfba2-2bdc-4711-8a00-ef2d7abd8bda","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/248934b2-0c81-4d50-8dd3-9c1152171eb4/ticks/636921833382815029","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a4d8fe4b-42f3-4731-a8df-9e8044a48e3e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:58.2815029Z","submissionTimestamp":"2019-04-30T01:09:19.0859416Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"006e5e95-e504-4f31-9b6b-b013df4f9cdb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"83ab78fa-6ae4-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna/events/006e5e95-e504-4f31-9b6b-b013df4f9cdb/ticks/636921833366296349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:56.6296349Z","submissionTimestamp":"2019-04-30T01:09:15.1460224Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"2228a9d3-cf62-4ddd-a359-51c96d139271","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"83ab78fa-6ae4-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna/events/2228a9d3-cf62-4ddd-a359-51c96d139271/ticks/636921833317245715","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:51.7245715Z","submissionTimestamp":"2019-04-30T01:09:15.1450213Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '12' + - '82361' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:07:16 GMT + - Tue, 30 Apr 2019 01:09:43 GMT expires: - '-1' pragma: @@ -1279,24 +1431,102 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A07%3A25Z%20and%20correlationId%20eq%20%276ac7f489-4c03-4898-a8c6-68e8e7fd335e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A53Z%20and%20correlationId%20eq%20%2715c89ebb-7c11-4f11-8b49-6216c5e6204c%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"ba1a6a6f-9669-4ec2-9c79-723054f0c570","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna/events/ba1a6a6f-9669-4ec2-9c79-723054f0c570/ticks/636921833724565445","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7ee31090-afa7-4a67-a8c9-d40519b423fd","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:32.4565445Z","submissionTimestamp":"2019-04-30T01:09:51.0713354Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"7ea7901f-f578-41bd-85d5-5bcbc9465e98","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/7ea7901f-f578-41bd-85d5-5bcbc9465e98/ticks/636921833601288843","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"1e6e97f0-324b-4f29-9348-11658097676d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:20.1288843Z","submissionTimestamp":"2019-04-30T01:09:44.0995553Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"1c03aa59-f187-4c13-aa81-75288091e52e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1c03aa59-f187-4c13-aa81-75288091e52e/ticks/636921833484522019","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ddb2cbc-a3ec-417d-a458-3f4b3ce4f428","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:08.4522019Z","submissionTimestamp":"2019-04-30T01:09:26.0970619Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"af311f25-cc39-4b4e-9efc-d14192ae9c8c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4b15f62-ab97-4af7-9c5c-0d670e5be358","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b/events/af311f25-cc39-4b4e-9efc-d14192ae9c8c/ticks/636921833483590473","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"f83a36e9-ffef-4883-9673-c824a8b8ebc6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"e7c6985b-af0e-45bf-93a2-e7bab6e7d825"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:09:08.3590473Z","submissionTimestamp":"2019-04-30T01:09:24.0742242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"6abdcd65-25ca-478f-8b41-6ebb9b549b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eed9eff0-c4f6-4f74-beac-49f96597cc5a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6abdcd65-25ca-478f-8b41-6ebb9b549b77/ticks/636921833483128931","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8175c33b-809b-47c3-81de-7c095e087eff","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"1cbe3e43-98b9-4bbf-80fc-34ff31085834"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:09:08.3128931Z","submissionTimestamp":"2019-04-30T01:09:29.0926649Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"7640428e-2f2b-4049-8b55-883e4cb1234b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/7640428e-2f2b-4049-8b55-883e4cb1234b/ticks/636921833482329191","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8175c33b-809b-47c3-81de-7c095e087eff","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:08.2329191Z","submissionTimestamp":"2019-04-30T01:09:29.0926649Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"79b8f501-9b1a-404d-a2d7-61675ef331ca","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4b15f62-ab97-4af7-9c5c-0d670e5be358","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b/events/79b8f501-9b1a-404d-a2d7-61675ef331ca/ticks/636921833481590566","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"f83a36e9-ffef-4883-9673-c824a8b8ebc6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:08.1590566Z","submissionTimestamp":"2019-04-30T01:09:24.0742242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"973ac777-d2b7-4755-846f-a24a982210d7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eed9eff0-c4f6-4f74-beac-49f96597cc5a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/973ac777-d2b7-4755-846f-a24a982210d7/ticks/636921833469628926","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8175c33b-809b-47c3-81de-7c095e087eff","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:06.9628926Z","submissionTimestamp":"2019-04-30T01:09:29.0926649Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"7ba9d8e5-fc5f-4ac3-8e02-c1491760a92c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/7ba9d8e5-fc5f-4ac3-8e02-c1491760a92c/ticks/636921833462664998","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"a8221388-defb-4bc4-80b7-13b2cbafdf2d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:06.2664998Z","submissionTimestamp":"2019-04-30T01:09:22.998265Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"ad7a93ec-4441-4bb9-8dee-ff6d479ca21f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fc5acbfe-7edb-4ee9-9f0c-2577e738b09e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/ad7a93ec-4441-4bb9-8dee-ff6d479ca21f/ticks/636921833461778969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"b3754444-fdd1-497e-95fd-5a26cbc6d1a5","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"dd1bab8d-4070-4e37-abb5-2a6f31fb4a86","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"82239eaa-1d2c-4a7a-a0f4-438b987f3637\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"09780d14-2b00-433d-939a-4a4f05e815cd\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"82239eaa-1d2c-4a7a-a0f4-438b987f3637\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:09:06.1778969Z","submissionTimestamp":"2019-04-30T01:09:29.0926649Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"84401676-15e3-419a-8da3-4304dc8de778","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/84401676-15e3-419a-8da3-4304dc8de778/ticks/636921833458423110","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"206585d8-da2b-4746-95fd-fa5ed1ffd8a2","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:05.842311Z","submissionTimestamp":"2019-04-30T01:09:20.0765135Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"35f7db1d-a85e-4522-8c61-c7576c29dbbf","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fc5acbfe-7edb-4ee9-9f0c-2577e738b09e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/35f7db1d-a85e-4522-8c61-c7576c29dbbf/ticks/636921833452079086","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"b3754444-fdd1-497e-95fd-5a26cbc6d1a5","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:05.2079086Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"aa1be0d6-3ecb-49e2-a7af-9858cf96aefb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5109f0a-b8d3-4c23-a796-ed93e7bde5bc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/aa1be0d6-3ecb-49e2-a7af-9858cf96aefb/ticks/636921833398671539","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f4f55779-a996-4288-9d2e-4d8786f848a2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"b613ab23-6aab-4e52-a46e-dd8fca893737","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"229498a4-ca46-4bbc-ad85-53588a462e12\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"6685705c-20f7-45e2-ada2-7a5e87ea7345\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:59.8671539Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"9f5d7370-fa35-4f60-ad00-e7bbf898a872","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bf7cbd64-ad63-49d9-9d2e-1fb7c8cd5e58","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/9f5d7370-fa35-4f60-ad00-e7bbf898a872/ticks/636921833397971351","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4ee9ffbc-7a41-4df1-bdff-9630996ce87d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9e00c64b-1eed-492a-a513-3352191cfe81","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e28744cb-385d-4e76-a683-47273e95a1dd\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0946b626-eafd-4aec-bad9-5e573b72f2f6\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:59.7971351Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"b8aa24ce-9ccb-449a-a8a6-0fe1ee37bc0b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0e5cfba2-2bdc-4711-8a00-ef2d7abd8bda","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/b8aa24ce-9ccb-449a-a8a6-0fe1ee37bc0b/ticks/636921833397921523","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a4d8fe4b-42f3-4731-a8df-9e8044a48e3e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"63697ae2-fc08-49b4-8651-d2b46e17412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"80eee6e8-6cde-4e22-adb4-d691124a3cb8\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"fbffdbc7-470a-4d45-97d7-bba767ca80de\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"80eee6e8-6cde-4e22-adb4-d691124a3cb8\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:59.7921523Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"91058942-3b51-4096-a46d-81140b600a6e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/91058942-3b51-4096-a46d-81140b600a6e/ticks/636921833397171163","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f4f55779-a996-4288-9d2e-4d8786f848a2","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:59.7171163Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"07e8543f-876e-4911-bc73-cd07a9e90d60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/07e8543f-876e-4911-bc73-cd07a9e90d60/ticks/636921833397121160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a4d8fe4b-42f3-4731-a8df-9e8044a48e3e","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:59.712116Z","submissionTimestamp":"2019-04-30T01:09:29.0916637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"03733572-4d48-4e60-a4d1-c1319ae4c947","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bf7cbd64-ad63-49d9-9d2e-1fb7c8cd5e58","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/03733572-4d48-4e60-a4d1-c1319ae4c947/ticks/636921833383065017","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4ee9ffbc-7a41-4df1-bdff-9630996ce87d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:58.3065017Z","submissionTimestamp":"2019-04-30T01:09:19.0859416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"233f49ad-1017-400e-bbae-026ed7bce4da","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5109f0a-b8d3-4c23-a796-ed93e7bde5bc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/233f49ad-1017-400e-bbae-026ed7bce4da/ticks/636921833383065017","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f4f55779-a996-4288-9d2e-4d8786f848a2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:58.3065017Z","submissionTimestamp":"2019-04-30T01:09:19.0859416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"248934b2-0c81-4d50-8dd3-9c1152171eb4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0e5cfba2-2bdc-4711-8a00-ef2d7abd8bda","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/248934b2-0c81-4d50-8dd3-9c1152171eb4/ticks/636921833382815029","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a4d8fe4b-42f3-4731-a8df-9e8044a48e3e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:58.2815029Z","submissionTimestamp":"2019-04-30T01:09:19.0859416Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"006e5e95-e504-4f31-9b6b-b013df4f9cdb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"83ab78fa-6ae4-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna/events/006e5e95-e504-4f31-9b6b-b013df4f9cdb/ticks/636921833366296349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:56.6296349Z","submissionTimestamp":"2019-04-30T01:09:15.1460224Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","description":"","eventDataId":"2228a9d3-cf62-4ddd-a359-51c96d139271","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"83ab78fa-6ae4-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna/events/2228a9d3-cf62-4ddd-a359-51c96d139271/ticks/636921833317245715","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:51.7245715Z","submissionTimestamp":"2019-04-30T01:09:15.1450213Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '12' + - '89518' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:07:27 GMT + - Tue, 30 Apr 2019 01:09:53 GMT expires: - '-1' pragma: @@ -1328,10 +1558,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461328978489076?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450203517665470?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -1343,7 +1573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:07:31 GMT + - Tue, 30 Apr 2019 01:09:57 GMT expires: - '-1' pragma: @@ -1371,13 +1601,13 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_3x9LCQnj0yKir5zzZegsKEv56gQfNiMZ","name":"vm_deploy_3x9LCQnj0yKir5zzZegsKEv56gQfNiMZ","properties":{"templateHash":"5868198862872692067","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-17T04:07:05.7017851Z","duration":"PT38.0730678S","correlationId":"6ac7f489-4c03-4898-a8c6-68e8e7fd335e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna","name":"vm_deploy_NoUXUOnZBSvXgTpBcWWuFZa8nByA0yna","properties":{"templateHash":"3313627070546081169","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:09:32.2254589Z","duration":"PT38.5143816S","correlationId":"15c89ebb-7c11-4f11-8b49-6216c5e6204c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache @@ -1386,7 +1616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:07:32 GMT + - Tue, 30 Apr 2019 01:09:58 GMT expires: - '-1' pragma: @@ -1414,24 +1644,24 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"8b663d61-c2b2-4a8a-9da1-05bd8f62bf28\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"4be512e0-bfe4-4f02-8ee5-daa8dc0b81d6\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ ,\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n\ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"name\": \"vm1_disk1_efdd866db8d943fdb98ace8a4e77d582\",\r\n \ + \ \"name\": \"vm1_disk1_4656e84acf4a46399ea49fe0a51af85b\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_efdd866db8d943fdb98ace8a4e77d582\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\ ,\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\"\ @@ -1446,20 +1676,20 @@ interactions: }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ : {\r\n \"computerName\": \"vm1\",\r\n \"osName\": \"ubuntu\",\r\ \n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\"\ - : \"2.2.38\",\r\n \"statuses\": [\r\n {\r\n \"\ + : \"2.2.40\",\r\n \"statuses\": [\r\n {\r\n \"\ code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\"\ ,\r\n \"displayStatus\": \"Ready\",\r\n \"message\"\ - : \"Guest Agent is running\",\r\n \"time\": \"2019-04-17T04:07:32+00:00\"\ + : \"Guest Agent is running\",\r\n \"time\": \"2019-04-30T01:09:58+00:00\"\ \r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n \ - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_efdd866db8d943fdb98ace8a4e77d582\"\ + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_4656e84acf4a46399ea49fe0a51af85b\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-17T04:06:41.9339619+00:00\"\r\n }\r\ + \ \"time\": \"2019-04-30T01:09:09.1800715+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\": \"2019-04-17T04:07:02.9815119+00:00\"\r\n \ + ,\r\n \"time\": \"2019-04-30T01:09:29.9456927+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\"\ @@ -1473,7 +1703,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:07:33 GMT + - Tue, 30 Apr 2019 01:09:58 GMT expires: - '-1' pragma: @@ -1490,7 +1720,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31990 status: code: 200 message: OK @@ -1508,8 +1738,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1517,12 +1747,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ - ,\r\n \"etag\": \"W/\\\"386e6200-dccc-443c-ba2c-cf439170433d\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"fa4fd6bb-c850-436d-a2ac-c368ddd8c097\\\"\",\r\n \ \ \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0257f55-9e1a-4142-a9d0-0c97f198d891\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"09780d14-2b00-433d-939a-4a4f05e815cd\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ - ,\r\n \"etag\": \"W/\\\"386e6200-dccc-443c-ba2c-cf439170433d\\\"\"\ + ,\r\n \"etag\": \"W/\\\"fa4fd6bb-c850-436d-a2ac-c368ddd8c097\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ @@ -1532,8 +1762,8 @@ interactions: \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\": \"kwv2m0i2fvjureeu3qtigi1gne.cx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-05-8F-27\",\r\n \"enableAcceleratedNetworking\"\ + internalDomainNameSuffix\": \"y5n554yki3cu1f4xxotwpsua1g.cx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-0F-9C-6D\",\r\n \"enableAcceleratedNetworking\"\ : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\ \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ @@ -1548,9 +1778,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:07:34 GMT + - Tue, 30 Apr 2019 01:09:59 GMT etag: - - W/"386e6200-dccc-443c-ba2c-cf439170433d" + - W/"fa4fd6bb-c850-436d-a2ac-c368ddd8c097" expires: - '-1' pragma: @@ -1583,8 +1813,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-key User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1592,10 +1822,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ - ,\r\n \"etag\": \"W/\\\"205d110d-684c-4de5-834c-3b79dd93aa81\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"4ef85f1d-2d89-446d-aa63-b2f9de35de13\\\"\",\r\n \ \ \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"431f3b11-3fa3-497c-b958-f960f3916164\"\ - ,\r\n \"ipAddress\": \"52.232.250.194\",\r\n \"publicIPAddressVersion\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6685705c-20f7-45e2-ada2-7a5e87ea7345\"\ + ,\r\n \"ipAddress\": \"40.70.69.85\",\r\n \"publicIPAddressVersion\"\ : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\"\ : 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ @@ -1606,13 +1836,13 @@ interactions: cache-control: - no-cache content-length: - - '1024' + - '1021' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:07:34 GMT + - Tue, 30 Apr 2019 01:09:59 GMT etag: - - W/"205d110d-684c-4de5-834c-3b79dd93aa81" + - W/"4ef85f1d-2d89-446d-aa63-b2f9de35de13" expires: - '-1' pragma: @@ -1650,8 +1880,8 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -1661,17 +1891,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/004a2833-6225-4ba1-bcb3-0f15b4a4bac6?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/76ba270b-408d-42d6-8cad-61985e65d513?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 17 Apr 2019 04:07:35 GMT + - Tue, 30 Apr 2019 01:10:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/004a2833-6225-4ba1-bcb3-0f15b4a4bac6?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/76ba270b-408d-42d6-8cad-61985e65d513?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -1702,20 +1932,20 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/004a2833-6225-4ba1-bcb3-0f15b4a4bac6?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/76ba270b-408d-42d6-8cad-61985e65d513?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:07:35.4200487+00:00\",\r\n \"\ - endTime\": \"2019-04-17T04:07:53.6706289+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:10:00.9769328+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:10:19.5394272+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\r\n \"value\": [\r\n {\r\ \n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"\ Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"\ message\": \"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning: commands\ - \ will be executed using /bin/sh\\njob 1 at Wed Apr 17 04:08:00 2019\\n\"\r\ - \n }\r\n ]\r\n}\r\n },\r\n \"name\": \"004a2833-6225-4ba1-bcb3-0f15b4a4bac6\"\ + \ will be executed using /bin/sh\\njob 1 at Tue Apr 30 01:11:00 2019\\n\"\r\ + \n }\r\n ]\r\n}\r\n },\r\n \"name\": \"76ba270b-408d-42d6-8cad-61985e65d513\"\ \r\n}" headers: cache-control: @@ -1725,7 +1955,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:08:05 GMT + - Tue, 30 Apr 2019 01:10:30 GMT expires: - '-1' pragma: @@ -1742,7 +1972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29988 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995 status: code: 200 message: OK @@ -1760,15 +1990,15 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/004a2833-6225-4ba1-bcb3-0f15b4a4bac6?monitor=true&api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/76ba270b-408d-42d6-8cad-61985e65d513?monitor=true&api-version=2019-03-01 response: body: string: '{"value":[{"code":"ProvisioningState/succeeded","level":"Info","displayStatus":"Provisioning succeeded","message":"Enable succeeded: \n[stdout]\n\n[stderr]\nwarning: commands - will be executed using /bin/sh\njob 1 at Wed Apr 17 04:08:00 2019\n"}]}' + will be executed using /bin/sh\njob 1 at Tue Apr 30 01:11:00 2019\n"}]}' headers: cache-control: - no-cache @@ -1777,7 +2007,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:08:05 GMT + - Tue, 30 Apr 2019 01:10:31 GMT expires: - '-1' pragma: @@ -1794,7 +2024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29987 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 status: code: 200 message: OK @@ -1814,8 +2044,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -1825,17 +2055,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 17 Apr 2019 04:09:16 GMT + - Tue, 30 Apr 2019 01:11:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -1846,7 +2076,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1197 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1866,24 +2096,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:09:27 GMT + - Tue, 30 Apr 2019 01:11:52 GMT expires: - '-1' pragma: @@ -1900,7 +2130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29985 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992 status: code: 200 message: OK @@ -1918,24 +2148,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:10:04 GMT + - Tue, 30 Apr 2019 01:12:29 GMT expires: - '-1' pragma: @@ -1952,7 +2182,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29981 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29988 status: code: 200 message: OK @@ -1970,24 +2200,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:10:33 GMT + - Tue, 30 Apr 2019 01:12:59 GMT expires: - '-1' pragma: @@ -2004,7 +2234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29978 + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29985 status: code: 200 message: OK @@ -2022,24 +2252,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:11:04 GMT + - Tue, 30 Apr 2019 01:13:30 GMT expires: - '-1' pragma: @@ -2056,7 +2286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29976 + - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29983 status: code: 200 message: OK @@ -2074,24 +2304,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:11:35 GMT + - Tue, 30 Apr 2019 01:14:00 GMT expires: - '-1' pragma: @@ -2108,7 +2338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29973 + - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29980 status: code: 200 message: OK @@ -2126,24 +2356,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:12:05 GMT + - Tue, 30 Apr 2019 01:14:30 GMT expires: - '-1' pragma: @@ -2160,7 +2390,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29970 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29977 status: code: 200 message: OK @@ -2178,24 +2408,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:12:36 GMT + - Tue, 30 Apr 2019 01:15:00 GMT expires: - '-1' pragma: @@ -2212,7 +2442,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29967 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29974 status: code: 200 message: OK @@ -2230,24 +2460,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:13:06 GMT + - Tue, 30 Apr 2019 01:15:31 GMT expires: - '-1' pragma: @@ -2264,7 +2494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29964 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29971 status: code: 200 message: OK @@ -2282,24 +2512,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:13:36 GMT + - Tue, 30 Apr 2019 01:16:01 GMT expires: - '-1' pragma: @@ -2316,7 +2546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29961 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29968 status: code: 200 message: OK @@ -2334,24 +2564,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:14:07 GMT + - Tue, 30 Apr 2019 01:16:31 GMT expires: - '-1' pragma: @@ -2368,7 +2598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29958 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29965 status: code: 200 message: OK @@ -2386,24 +2616,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:14:37 GMT + - Tue, 30 Apr 2019 01:17:02 GMT expires: - '-1' pragma: @@ -2420,7 +2650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29955 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29962 status: code: 200 message: OK @@ -2438,24 +2668,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:15:08 GMT + - Tue, 30 Apr 2019 01:17:31 GMT expires: - '-1' pragma: @@ -2472,7 +2702,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29952 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29960 status: code: 200 message: OK @@ -2490,24 +2720,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:15:38 GMT + - Tue, 30 Apr 2019 01:18:02 GMT expires: - '-1' pragma: @@ -2524,7 +2754,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29949 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29957 status: code: 200 message: OK @@ -2542,24 +2772,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:16:08 GMT + - Tue, 30 Apr 2019 01:18:33 GMT expires: - '-1' pragma: @@ -2576,7 +2806,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29946 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29954 status: code: 200 message: OK @@ -2594,24 +2824,76 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4a3ab6fe-d159-47b1-bf61-370b99a2f8f5?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:09:17.423311+00:00\",\r\n \"\ - endTime\": \"2019-04-17T04:16:30.1419351+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"4a3ab6fe-d159-47b1-bf61-370b99a2f8f5\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:19:03 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;14985,Microsoft.Compute/GetOperation30Min;29951 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/8774780a-cfeb-4cb7-96a0-ce1ef9d5611f?api-version=2019-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-04-30T01:11:42.6644067+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:19:05.5446346+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"8774780a-cfeb-4cb7-96a0-ce1ef9d5611f\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:16:39 GMT + - Tue, 30 Apr 2019 01:19:33 GMT expires: - '-1' pragma: @@ -2628,7 +2910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29943 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29949 status: code: 200 message: OK @@ -2648,8 +2930,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -2663,7 +2945,7 @@ interactions: content-length: - '0' date: - - Wed, 17 Apr 2019 04:16:39 GMT + - Tue, 30 Apr 2019 01:19:34 GMT expires: - '-1' pragma: @@ -2696,23 +2978,23 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"8b663d61-c2b2-4a8a-9da1-05bd8f62bf28\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"4be512e0-bfe4-4f02-8ee5-daa8dc0b81d6\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ ,\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n\ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"name\": \"vm1_disk1_efdd866db8d943fdb98ace8a4e77d582\",\r\n \ + \ \"name\": \"vm1_disk1_4656e84acf4a46399ea49fe0a51af85b\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_efdd866db8d943fdb98ace8a4e77d582\"\ + ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b\"\ \r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ : {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"clitest1\"\ ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ @@ -2735,7 +3017,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:16:41 GMT + - Tue, 30 Apr 2019 01:19:35 GMT expires: - '-1' pragma: @@ -2752,7 +3034,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31988 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31980 status: code: 200 message: OK @@ -2770,15 +3052,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-17T04:05:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2787,7 +3069,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:16:40 GMT + - Tue, 30 Apr 2019 01:19:34 GMT expires: - '-1' pragma: @@ -2803,7 +3085,8 @@ interactions: message: OK - request: body: 'b''{"location": "eastus2", "tags": {}, "properties": {"sourceVirtualMachine": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"}}}''' + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"}, + "hyperVGeneration": "V1"}}''' headers: Accept: - application/json @@ -2814,43 +3097,44 @@ interactions: Connection: - keep-alive Content-Length: - - '277' + - '303' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_efdd866db8d943fdb98ace8a4e77d582\"\ + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ + \ \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ ,\r\n \"name\": \"managedImage1\"\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/e16de0de-2222-41a0-a2cb-5ab09479a698?api-version=2018-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4c35b091-dc3d-4a76-9863-c4f852bd6696?api-version=2019-03-01 cache-control: - no-cache content-length: - - '1126' + - '1157' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:16:43 GMT + - Tue, 30 Apr 2019 01:19:37 GMT expires: - '-1' pragma: @@ -2883,15 +3167,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/e16de0de-2222-41a0-a2cb-5ab09479a698?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/4c35b091-dc3d-4a76-9863-c4f852bd6696?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:16:43.5329877+00:00\",\r\n \"\ - endTime\": \"2019-04-17T04:16:48.7050277+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"e16de0de-2222-41a0-a2cb-5ab09479a698\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:19:36.8893917+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:19:42.0458034+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"4c35b091-dc3d-4a76-9863-c4f852bd6696\"\r\n}" headers: cache-control: - no-cache @@ -2900,7 +3184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:17:14 GMT + - Tue, 30 Apr 2019 01:20:07 GMT expires: - '-1' pragma: @@ -2917,7 +3201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29941 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29947 status: code: 200 message: OK @@ -2935,10 +3219,10 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ @@ -2946,21 +3230,22 @@ interactions: \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ \ \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_efdd866db8d943fdb98ace8a4e77d582\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_4656e84acf4a46399ea49fe0a51af85b\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ ,\r\n \"name\": \"managedImage1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1154' + - '1185' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:17:14 GMT + - Tue, 30 Apr 2019 01:20:07 GMT expires: - '-1' pragma: @@ -2996,15 +3281,15 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-17T04:05:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3013,7 +3298,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:17:14 GMT + - Tue, 30 Apr 2019 01:20:08 GMT expires: - '-1' pragma: @@ -3048,8 +3333,8 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT @@ -3060,8 +3345,8 @@ interactions: \n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ : {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\ - \n \"publishedDate\": \"2019-04-17T04:17:17.159065+00:00\",\r\n \ - \ \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\ + \n \"publishedDate\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \ + \ \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\ \n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\"\ : 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n\ \ ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \ @@ -3070,15 +3355,15 @@ interactions: \r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ff9f6af-2f1e-409a-abf1-40966f22e610?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 cache-control: - no-cache content-length: - - '1070' + - '1071' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:17:17 GMT + - Tue, 30 Apr 2019 01:20:10 GMT expires: - '-1' pragma: @@ -3091,7 +3376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -3110,24 +3395,24 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ff9f6af-2f1e-409a-abf1-40966f22e610?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:17:17.127812+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"0ff9f6af-2f1e-409a-abf1-40966f22e610\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c6d68e7a-2a15-4dda-97a1-6918eb5d36b4\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:17:47 GMT + - Tue, 30 Apr 2019 01:20:41 GMT expires: - '-1' pragma: @@ -3161,24 +3446,24 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ff9f6af-2f1e-409a-abf1-40966f22e610?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:17:17.127812+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"0ff9f6af-2f1e-409a-abf1-40966f22e610\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c6d68e7a-2a15-4dda-97a1-6918eb5d36b4\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:18:18 GMT + - Tue, 30 Apr 2019 01:21:11 GMT expires: - '-1' pragma: @@ -3212,24 +3497,24 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ff9f6af-2f1e-409a-abf1-40966f22e610?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:17:17.127812+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"0ff9f6af-2f1e-409a-abf1-40966f22e610\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c6d68e7a-2a15-4dda-97a1-6918eb5d36b4\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:18:49 GMT + - Tue, 30 Apr 2019 01:21:42 GMT expires: - '-1' pragma: @@ -3263,24 +3548,24 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ff9f6af-2f1e-409a-abf1-40966f22e610?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:17:17.127812+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"0ff9f6af-2f1e-409a-abf1-40966f22e610\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c6d68e7a-2a15-4dda-97a1-6918eb5d36b4\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:20:37 GMT + - Tue, 30 Apr 2019 01:22:12 GMT expires: - '-1' pragma: @@ -3314,24 +3599,24 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ff9f6af-2f1e-409a-abf1-40966f22e610?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:17:17.127812+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"0ff9f6af-2f1e-409a-abf1-40966f22e610\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c6d68e7a-2a15-4dda-97a1-6918eb5d36b4\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:22:19 GMT + - Tue, 30 Apr 2019 01:22:43 GMT expires: - '-1' pragma: @@ -3365,24 +3650,24 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ff9f6af-2f1e-409a-abf1-40966f22e610?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:17:17.127812+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"0ff9f6af-2f1e-409a-abf1-40966f22e610\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c6d68e7a-2a15-4dda-97a1-6918eb5d36b4\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:22:50 GMT + - Tue, 30 Apr 2019 01:23:14 GMT expires: - '-1' pragma: @@ -3416,24 +3701,24 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ff9f6af-2f1e-409a-abf1-40966f22e610?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:17:17.127812+00:00\",\r\n \"\ - endTime\": \"2019-04-17T04:23:18.1549615+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"0ff9f6af-2f1e-409a-abf1-40966f22e610\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c6d68e7a-2a15-4dda-97a1-6918eb5d36b4\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:23:21 GMT + - Tue, 30 Apr 2019 01:23:44 GMT expires: - '-1' pragma: @@ -3467,35 +3752,24 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 response: body: - string: "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\ - \n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ - ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ - : {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\ - \n \"publishedDate\": \"2019-04-17T04:17:17.159065+00:00\",\r\n \ - \ \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\ - \n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\"\ - : 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n\ - \ ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ - \r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\"\ - : 30,\r\n \"hostCaching\": \"ReadWrite\"\r\n }\r\n }\r\n }\r\ - \n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c6d68e7a-2a15-4dda-97a1-6918eb5d36b4\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '1198' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:23:21 GMT + - Tue, 30 Apr 2019 01:24:15 GMT expires: - '-1' pragma: @@ -3522,44 +3796,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version list + - sig image-version create Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition + - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\"\ - ,\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ - ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ - : {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\":\ - \ false,\r\n \"publishedDate\": \"2019-04-17T04:17:17.159065+00:00\"\ - ,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\"\ - : [\r\n {\r\n \"name\": \"East US 2\",\r\n \ - \ \"regionalReplicaCount\": 1,\r\n \"storageAccountType\"\ - : \"Standard_LRS\"\r\n }\r\n ],\r\n \"source\"\ - : {\r\n \"managedImage\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ - \r\n }\r\n }\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"storageProfile\": {\r\n \"osDiskImage\"\ - : {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\"\ - \r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c6d68e7a-2a15-4dda-97a1-6918eb5d36b4\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '1359' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:23:24 GMT + - Tue, 30 Apr 2019 01:24:45 GMT expires: - '-1' pragma: @@ -3586,43 +3847,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version show + - sig image-version create Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version + - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image + --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 response: body: - string: "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\ - \n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ - ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ - : {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\ - \n \"publishedDate\": \"2019-04-17T04:17:17.159065+00:00\",\r\n \ - \ \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\ - \n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\"\ - : 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n\ - \ ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ - \r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\"\ - : 30,\r\n \"hostCaching\": \"ReadWrite\"\r\n }\r\n }\r\n }\r\ - \n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c6d68e7a-2a15-4dda-97a1-6918eb5d36b4\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '1198' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:23:24 GMT + - Tue, 30 Apr 2019 01:25:16 GMT expires: - '-1' pragma: @@ -3649,44 +3898,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version update + - sig image-version create Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 response: body: - string: "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\ - \n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ - ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ - : {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\ - \n \"publishedDate\": \"2019-04-17T04:17:17.159065+00:00\",\r\n \ - \ \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\ - \n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\"\ - : 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n\ - \ ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ - \r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\"\ - : 30,\r\n \"hostCaching\": \"ReadWrite\"\r\n }\r\n }\r\n }\r\ - \n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c6d68e7a-2a15-4dda-97a1-6918eb5d36b4\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '1198' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:23:25 GMT + - Tue, 30 Apr 2019 01:25:46 GMT expires: - '-1' pragma: @@ -3706,60 +3942,38 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "eastus2", "tags": {}, "properties": {"publishingProfile": - {"targetRegions": [{"name": "westus2", "regionalReplicaCount": 1}, {"name": - "eastus2"}], "source": {"managedImage": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"}}, - "replicaCount": 2, "excludeFromLatest": false, "storageAccountType": "Standard_LRS"}}}''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sig image-version update + - sig image-version create Connection: - keep-alive - Content-Length: - - '478' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2?api-version=2019-03-01 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6d68e7a-2a15-4dda-97a1-6918eb5d36b4?api-version=2019-03-01 response: body: - string: "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\ - \n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ - ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ - : {\r\n \"replicaCount\": 2,\r\n \"excludeFromLatest\": false,\r\ - \n \"publishedDate\": \"2019-04-17T04:17:17.159065+00:00\",\r\n \ - \ \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\ - \n {\r\n \"name\": \"West US 2\",\r\n \"regionalReplicaCount\"\ - : 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\ - \n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\"\ - : 2,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n\ - \ ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ - \r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\ - \r\n }\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:26:10.6464663+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"c6d68e7a-2a15-4dda-97a1-6918eb5d36b4\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 cache-control: - no-cache content-length: - - '1211' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:23:26 GMT + - Tue, 30 Apr 2019 01:26:16 GMT expires: - '-1' pragma: @@ -3775,8 +3989,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -3788,31 +4000,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version update + - sig image-version create Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ - \r\n}" + string: "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\ + \n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ + ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ + : {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\ + \n \"publishedDate\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \ + \ \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\ + \n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\"\ + : 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n\ + \ ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ + \r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\"\ + : 30,\r\n \"hostCaching\": \"ReadWrite\"\r\n }\r\n }\r\n }\r\ + \n}" headers: cache-control: - no-cache content-length: - - '134' + - '1199' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:23:57 GMT + - Tue, 30 Apr 2019 01:26:18 GMT expires: - '-1' pragma: @@ -3839,31 +4062,44 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version update + - sig image-version list Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count + - -g --gallery-name --gallery-image-definition User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ - \r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\"\ + ,\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ + ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ + : {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\":\ + \ false,\r\n \"publishedDate\": \"2019-04-30T01:20:10.2653604+00:00\"\ + ,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\"\ + : [\r\n {\r\n \"name\": \"East US 2\",\r\n \ + \ \"regionalReplicaCount\": 1,\r\n \"storageAccountType\"\ + : \"Standard_LRS\"\r\n }\r\n ],\r\n \"source\"\ + : {\r\n \"managedImage\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ + \r\n }\r\n }\r\n },\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"storageProfile\": {\r\n \"osDiskImage\"\ + : {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\": \"ReadWrite\"\ + \r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '1360' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:24:28 GMT + - Tue, 30 Apr 2019 01:26:19 GMT expires: - '-1' pragma: @@ -3890,21 +4126,223 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sig image-version update + - sig image-version show Connection: - keep-alive ParameterSetName: - - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions - --replica-count + - -g --gallery-name --gallery-image-definition --gallery-image-version + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2?api-version=2019-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\ + \n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ + ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ + : {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\ + \n \"publishedDate\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \ + \ \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\ + \n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\"\ + : 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n\ + \ ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ + \r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\"\ + : 30,\r\n \"hostCaching\": \"ReadWrite\"\r\n }\r\n }\r\n }\r\ + \n}" + headers: + cache-control: + - no-cache + content-length: + - '1199' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:26: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version update + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --replica-count + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2?api-version=2019-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\ + \n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ + ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ + : {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\ + \n \"publishedDate\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \ + \ \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\ + \n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\"\ + : 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n\ + \ ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ + \r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\"\ + : 30,\r\n \"hostCaching\": \"ReadWrite\"\r\n }\r\n }\r\n }\r\ + \n}" + headers: + cache-control: + - no-cache + content-length: + - '1199' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:26: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''{"location": "eastus2", "tags": {}, "properties": {"publishingProfile": + {"targetRegions": [{"name": "westus2", "regionalReplicaCount": 1}, {"name": + "eastus2"}], "source": {"managedImage": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"}}, + "replicaCount": 2, "excludeFromLatest": false, "storageAccountType": "Standard_LRS"}}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version update + Connection: + - keep-alive + Content-Length: + - '478' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --replica-count + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2?api-version=2019-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\ + \n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ + ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ + : {\r\n \"replicaCount\": 2,\r\n \"excludeFromLatest\": false,\r\ + \n \"publishedDate\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \ + \ \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\ + \n {\r\n \"name\": \"West US 2\",\r\n \"regionalReplicaCount\"\ + : 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\ + \n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\"\ + : 2,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n\ + \ ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\ + \r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\ + \r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 + cache-control: + - no-cache + content-length: + - '1212' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:26: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-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sig image-version update + Connection: + - keep-alive + ParameterSetName: + - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions + --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -3914,7 +4352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:24:59 GMT + - Tue, 30 Apr 2019 01:26:52 GMT expires: - '-1' pragma: @@ -3948,14 +4386,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -3965,7 +4403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:25:29 GMT + - Tue, 30 Apr 2019 01:27:22 GMT expires: - '-1' pragma: @@ -3999,14 +4437,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4016,7 +4454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:26:00 GMT + - Tue, 30 Apr 2019 01:27:53 GMT expires: - '-1' pragma: @@ -4050,14 +4488,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4067,7 +4505,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:26:31 GMT + - Tue, 30 Apr 2019 01:28:23 GMT expires: - '-1' pragma: @@ -4101,14 +4539,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4118,7 +4556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:27:01 GMT + - Tue, 30 Apr 2019 01:28:54 GMT expires: - '-1' pragma: @@ -4152,14 +4590,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4169,7 +4607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:27:32 GMT + - Tue, 30 Apr 2019 01:29:25 GMT expires: - '-1' pragma: @@ -4203,14 +4641,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4220,7 +4658,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:28:03 GMT + - Tue, 30 Apr 2019 01:29:55 GMT expires: - '-1' pragma: @@ -4254,14 +4692,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4271,7 +4709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:28:33 GMT + - Tue, 30 Apr 2019 01:30:26 GMT expires: - '-1' pragma: @@ -4305,14 +4743,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4322,7 +4760,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:29:03 GMT + - Tue, 30 Apr 2019 01:30:57 GMT expires: - '-1' pragma: @@ -4356,14 +4794,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4373,7 +4811,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:29:35 GMT + - Tue, 30 Apr 2019 01:31:26 GMT expires: - '-1' pragma: @@ -4407,14 +4845,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4424,7 +4862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:30:05 GMT + - Tue, 30 Apr 2019 01:31:57 GMT expires: - '-1' pragma: @@ -4458,14 +4896,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4475,7 +4913,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:30:35 GMT + - Tue, 30 Apr 2019 01:32:28 GMT expires: - '-1' pragma: @@ -4509,14 +4947,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4526,7 +4964,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:31:06 GMT + - Tue, 30 Apr 2019 01:32:58 GMT expires: - '-1' pragma: @@ -4560,14 +4998,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4577,7 +5015,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:31:37 GMT + - Tue, 30 Apr 2019 01:33:30 GMT expires: - '-1' pragma: @@ -4611,14 +5049,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4628,7 +5066,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:32:08 GMT + - Tue, 30 Apr 2019 01:34:00 GMT expires: - '-1' pragma: @@ -4662,14 +5100,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4679,7 +5117,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:32:38 GMT + - Tue, 30 Apr 2019 01:34:31 GMT expires: - '-1' pragma: @@ -4713,14 +5151,14 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\ \r\n}" headers: cache-control: @@ -4730,7 +5168,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:33:09 GMT + - Tue, 30 Apr 2019 01:35:01 GMT expires: - '-1' pragma: @@ -4764,15 +5202,15 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c4a8fef8-6fac-4d18-994b-e0b66d363b51?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:23:26.9989924+00:00\",\r\n \"\ - endTime\": \"2019-04-17T04:33:27.4257902+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"c4a8fef8-6fac-4d18-994b-e0b66d363b51\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:26:21.9591086+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:35:22.3700892+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"e8d7709d-5ff2-4c92-b3e0-ce80f4f05b81\"\r\n}" headers: cache-control: - no-cache @@ -4781,7 +5219,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:33:40 GMT + - Tue, 30 Apr 2019 01:35:32 GMT expires: - '-1' pragma: @@ -4815,8 +5253,8 @@ interactions: - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions --replica-count User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2?api-version=2019-03-01 response: @@ -4825,8 +5263,8 @@ interactions: \n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ : {\r\n \"replicaCount\": 2,\r\n \"excludeFromLatest\": false,\r\ - \n \"publishedDate\": \"2019-04-17T04:17:17.159065+00:00\",\r\n \ - \ \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\ + \n \"publishedDate\": \"2019-04-30T01:20:10.2653604+00:00\",\r\n \ + \ \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\ \n {\r\n \"name\": \"West US 2\",\r\n \"regionalReplicaCount\"\ : 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\ \n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\"\ @@ -4841,11 +5279,11 @@ interactions: cache-control: - no-cache content-length: - - '1339' + - '1340' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:33:40 GMT + - Tue, 30 Apr 2019 01:35:32 GMT expires: - '-1' pragma: @@ -4878,15 +5316,15 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-17T04:05:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4895,7 +5333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:33:42 GMT + - Tue, 30 Apr 2019 01:35:34 GMT expires: - '-1' pragma: @@ -4923,8 +5361,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -4946,7 +5384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:33:42 GMT + - Tue, 30 Apr 2019 01:35:34 GMT expires: - '-1' pragma: @@ -4979,8 +5417,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -4992,7 +5430,7 @@ interactions: : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1/versions/1.1.2\"\ ,\r\n \"name\": \"1.1.2\",\r\n \"properties\": {\r\n \"publishingProfile\"\ : {\r\n \"replicaCount\": 2,\r\n \"excludeFromLatest\":\ - \ false,\r\n \"publishedDate\": \"2019-04-17T04:17:17.159065+00:00\"\ + \ false,\r\n \"publishedDate\": \"2019-04-30T01:20:10.2653604+00:00\"\ ,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\"\ : [\r\n {\r\n \"name\": \"West US 2\",\r\n \ \ \"regionalReplicaCount\": 1,\r\n \"storageAccountType\"\ @@ -5009,11 +5447,11 @@ interactions: cache-control: - no-cache content-length: - - '1520' + - '1521' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:33:43 GMT + - Tue, 30 Apr 2019 01:35:34 GMT expires: - '-1' pragma: @@ -5046,8 +5484,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -5056,15 +5494,15 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\"\ - ,\r\n \"etag\": \"W/\\\"3323a25f-240c-4d06-9cc4-a834878441f5\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"75fb515e-f475-4aa2-9baa-f6ebb2c612af\\\"\",\r\ \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ : \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"\ - 69c6ab55-2d1c-4853-9094-ec268323666c\",\r\n \"addressSpace\": {\r\n\ + fbffdbc7-470a-4d45-97d7-bba767ca80de\",\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\ - ,\r\n \"etag\": \"W/\\\"3323a25f-240c-4d06-9cc4-a834878441f5\\\"\ + ,\r\n \"etag\": \"W/\\\"75fb515e-f475-4aa2-9baa-f6ebb2c612af\\\"\ \",\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-nsg8\"\ @@ -5083,7 +5521,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:33:44 GMT + - Tue, 30 Apr 2019 01:35:35 GMT expires: - '-1' pragma: @@ -5148,26 +5586,26 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","name":"vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","properties":{"templateHash":"14090799506518647144","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-17T04:33:48.1360082Z","duration":"PT1.2309845S","correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","name":"vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","properties":{"templateHash":"3387274184800672282","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:35:39.8214605Z","duration":"PT2.0333587S","correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/operationStatuses/08586461312585726030?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/operationStatuses/08586450187476895200?api-version=2018-05-01 cache-control: - no-cache content-length: - - '2448' + - '2447' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:33:48 GMT + - Tue, 30 Apr 2019 01:35:40 GMT expires: - '-1' pragma: @@ -5177,7 +5615,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -5197,12 +5635,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A33%3A53Z%20and%20correlationId%20eq%20%27117b68df-b6ad-468c-9937-ad0b34ba10c2%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A45Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 response: body: string: '{"value":[]}' @@ -5214,7 +5652,250 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:33:58 GMT + - Tue, 30 Apr 2019 01:35:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --admin-username --generate-ssh-keys + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A56Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '3711' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:35:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --admin-username --generate-ssh-keys + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A06Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '7510' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --admin-username --generate-ssh-keys + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450187476895200?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: + - Tue, 30 Apr 2019 01:36:10 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 + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --admin-username --generate-ssh-keys + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A17Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"e14c9961-be1b-4e57-987c-1f604dea6177","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/e14c9961-be1b-4e57-987c-1f604dea6177/ticks/636921849537034496","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"42034cdf-9af2-47e1-803a-7c522dfaa918","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:53.7034496Z","submissionTimestamp":"2019-04-30T01:36:15.2351019Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"d6483c29-0ded-498b-a3b4-75f8c24d94c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d6483c29-0ded-498b-a3b4-75f8c24d94c6/ticks/636921849470909117","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9aa41075-f677-4b70-8655-0e48bed605c7","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"cfed77b0-ae84-4ee3-9b4c-9b51f5b204c1\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:47.0909117Z","submissionTimestamp":"2019-04-30T01:36:07.0756504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"090aa188-01ce-4959-8aa5-a319b9ffa91d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/090aa188-01ce-4959-8aa5-a319b9ffa91d/ticks/636921849469858975","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1448d743-4e0b-40e1-af4e-e1e57699e80c","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"310d2f44-d4e2-412c-84f6-b0c7be6fd425\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"03c48476-450e-4e0f-b7a3-c61bff9afcff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:46.9858975Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f70a1c59-0a65-4e1d-ab9d-bea3a0564044","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/f70a1c59-0a65-4e1d-ab9d-bea3a0564044/ticks/636921849468859197","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:46.8859197Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"acb3d9f3-9f73-4807-93b2-3e6294aa3000","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/acb3d9f3-9f73-4807-93b2-3e6294aa3000/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ef92e5ef-d694-4347-b2ae-d8ca302bca0e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/ef92e5ef-d694-4347-b2ae-d8ca302bca0e/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '36634' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36:17 GMT expires: - '-1' pragma: @@ -5248,33 +5929,86 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A34%3A03Z%20and%20correlationId%20eq%20%27117b68df-b6ad-468c-9937-ad0b34ba10c2%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A27Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"78f54ae4-dc9c-40ff-9da1-c3d7a43d898b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/78f54ae4-dc9c-40ff-9da1-c3d7a43d898b/ticks/636910724290323263","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2868825c-0314-4e6b-b31d-18f3153c3e55","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/2868825c-0314-4e6b-b31d-18f3153c3e55/ticks/636921849663374701","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a48c037-7f33-42c7-91aa-5661675ada10","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:06.3374701Z","submissionTimestamp":"2019-04-30T01:36:27.0702476Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"137bf4a8-8246-4206-81fd-9d573fc68b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/137bf4a8-8246-4206-81fd-9d573fc68b77/ticks/636921849552645354","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6b8e600c-d5b2-4ec5-bf55-1f9d0939618b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:35:55.2645354Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"aa684f08-ef84-4ad1-a660-6d9f158799eb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/aa684f08-ef84-4ad1-a660-6d9f158799eb/ticks/636921849552128853","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"286710cd-6e46-445b-86fb-3f12ae51d7df"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:55.2128853Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f7383f2f-8ad6-4337-a964-0e31c165da95","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/f7383f2f-8ad6-4337-a964-0e31c165da95/ticks/636921849551328862","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.1328862Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2be4faea-c309-4cef-838a-1bcfbefd8487","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/2be4faea-c309-4cef-838a-1bcfbefd8487/ticks/636921849550745306","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.0745306Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"bc35e9cd-c843-46a1-ba50-6925377639cd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/bc35e9cd-c843-46a1-ba50-6925377639cd/ticks/636921849540029260","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:54.002926Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"e14c9961-be1b-4e57-987c-1f604dea6177","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/e14c9961-be1b-4e57-987c-1f604dea6177/ticks/636921849537034496","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"42034cdf-9af2-47e1-803a-7c522dfaa918","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:53.7034496Z","submissionTimestamp":"2019-04-30T01:36:15.2351019Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"785c248f-0bd6-4fe3-97d9-1a837f6b4429","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/785c248f-0bd6-4fe3-97d9-1a837f6b4429/ticks/636921849532677739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"91b9d3e0-9bbf-441f-98aa-881097f43ebd","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9adabe86-86cf-4e5a-bda6-50913f74c439\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:53.2677739Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"c1344c8a-fb35-4022-a0b6-05780db3a298","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/c1344c8a-fb35-4022-a0b6-05780db3a298/ticks/636921849528171374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"07a962a4-f63f-4926-91c5-42a9a1696c84","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.8171374Z","submissionTimestamp":"2019-04-30T01:36:10.1676306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"113462da-d9de-4245-8f7f-125c71acbe2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/113462da-d9de-4245-8f7f-125c71acbe2e/ticks/636921849523577324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.3577324Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"d6483c29-0ded-498b-a3b4-75f8c24d94c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d6483c29-0ded-498b-a3b4-75f8c24d94c6/ticks/636921849470909117","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9aa41075-f677-4b70-8655-0e48bed605c7","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"cfed77b0-ae84-4ee3-9b4c-9b51f5b204c1\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:47.0909117Z","submissionTimestamp":"2019-04-30T01:36:07.0756504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"090aa188-01ce-4959-8aa5-a319b9ffa91d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/090aa188-01ce-4959-8aa5-a319b9ffa91d/ticks/636921849469858975","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1448d743-4e0b-40e1-af4e-e1e57699e80c","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"310d2f44-d4e2-412c-84f6-b0c7be6fd425\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"03c48476-450e-4e0f-b7a3-c61bff9afcff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:46.9858975Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f70a1c59-0a65-4e1d-ab9d-bea3a0564044","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/f70a1c59-0a65-4e1d-ab9d-bea3a0564044/ticks/636921849468859197","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:46.8859197Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"acb3d9f3-9f73-4807-93b2-3e6294aa3000","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/acb3d9f3-9f73-4807-93b2-3e6294aa3000/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ef92e5ef-d694-4347-b2ae-d8ca302bca0e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/ef92e5ef-d694-4347-b2ae-d8ca302bca0e/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:49.0323263Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"cead4c0a-14a2-42b1-a283-1e9cbb3fe613","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/cead4c0a-14a2-42b1-a283-1e9cbb3fe613/ticks/636910724246373309","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:44.6373309Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '7511' + - '70837' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:34:04 GMT + - Tue, 30 Apr 2019 01:36:27 GMT expires: - '-1' pragma: @@ -5308,33 +6042,86 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A34%3A14Z%20and%20correlationId%20eq%20%27117b68df-b6ad-468c-9937-ad0b34ba10c2%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A38Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"78f54ae4-dc9c-40ff-9da1-c3d7a43d898b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/78f54ae4-dc9c-40ff-9da1-c3d7a43d898b/ticks/636910724290323263","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2868825c-0314-4e6b-b31d-18f3153c3e55","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/2868825c-0314-4e6b-b31d-18f3153c3e55/ticks/636921849663374701","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a48c037-7f33-42c7-91aa-5661675ada10","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:06.3374701Z","submissionTimestamp":"2019-04-30T01:36:27.0702476Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"137bf4a8-8246-4206-81fd-9d573fc68b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/137bf4a8-8246-4206-81fd-9d573fc68b77/ticks/636921849552645354","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6b8e600c-d5b2-4ec5-bf55-1f9d0939618b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:35:55.2645354Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"aa684f08-ef84-4ad1-a660-6d9f158799eb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/aa684f08-ef84-4ad1-a660-6d9f158799eb/ticks/636921849552128853","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"286710cd-6e46-445b-86fb-3f12ae51d7df"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:55.2128853Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f7383f2f-8ad6-4337-a964-0e31c165da95","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/f7383f2f-8ad6-4337-a964-0e31c165da95/ticks/636921849551328862","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.1328862Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2be4faea-c309-4cef-838a-1bcfbefd8487","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/2be4faea-c309-4cef-838a-1bcfbefd8487/ticks/636921849550745306","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.0745306Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"bc35e9cd-c843-46a1-ba50-6925377639cd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/bc35e9cd-c843-46a1-ba50-6925377639cd/ticks/636921849540029260","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:54.002926Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"e14c9961-be1b-4e57-987c-1f604dea6177","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/e14c9961-be1b-4e57-987c-1f604dea6177/ticks/636921849537034496","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"42034cdf-9af2-47e1-803a-7c522dfaa918","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:53.7034496Z","submissionTimestamp":"2019-04-30T01:36:15.2351019Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"785c248f-0bd6-4fe3-97d9-1a837f6b4429","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/785c248f-0bd6-4fe3-97d9-1a837f6b4429/ticks/636921849532677739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"91b9d3e0-9bbf-441f-98aa-881097f43ebd","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9adabe86-86cf-4e5a-bda6-50913f74c439\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:53.2677739Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"c1344c8a-fb35-4022-a0b6-05780db3a298","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/c1344c8a-fb35-4022-a0b6-05780db3a298/ticks/636921849528171374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"07a962a4-f63f-4926-91c5-42a9a1696c84","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.8171374Z","submissionTimestamp":"2019-04-30T01:36:10.1676306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"113462da-d9de-4245-8f7f-125c71acbe2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/113462da-d9de-4245-8f7f-125c71acbe2e/ticks/636921849523577324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.3577324Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"d6483c29-0ded-498b-a3b4-75f8c24d94c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d6483c29-0ded-498b-a3b4-75f8c24d94c6/ticks/636921849470909117","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9aa41075-f677-4b70-8655-0e48bed605c7","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"cfed77b0-ae84-4ee3-9b4c-9b51f5b204c1\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:47.0909117Z","submissionTimestamp":"2019-04-30T01:36:07.0756504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"090aa188-01ce-4959-8aa5-a319b9ffa91d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/090aa188-01ce-4959-8aa5-a319b9ffa91d/ticks/636921849469858975","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1448d743-4e0b-40e1-af4e-e1e57699e80c","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"310d2f44-d4e2-412c-84f6-b0c7be6fd425\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"03c48476-450e-4e0f-b7a3-c61bff9afcff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:46.9858975Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f70a1c59-0a65-4e1d-ab9d-bea3a0564044","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/f70a1c59-0a65-4e1d-ab9d-bea3a0564044/ticks/636921849468859197","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:46.8859197Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"acb3d9f3-9f73-4807-93b2-3e6294aa3000","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/acb3d9f3-9f73-4807-93b2-3e6294aa3000/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ef92e5ef-d694-4347-b2ae-d8ca302bca0e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/ef92e5ef-d694-4347-b2ae-d8ca302bca0e/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:49.0323263Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"cead4c0a-14a2-42b1-a283-1e9cbb3fe613","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/cead4c0a-14a2-42b1-a283-1e9cbb3fe613/ticks/636910724246373309","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:44.6373309Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '7511' + - '70837' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:34:15 GMT + - Tue, 30 Apr 2019 01:36:38 GMT expires: - '-1' pragma: @@ -5366,10 +6153,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461312585726030?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450187476895200?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -5381,7 +6168,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:34:19 GMT + - Tue, 30 Apr 2019 01:36:41 GMT expires: - '-1' pragma: @@ -5411,65 +6198,86 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A34%3A24Z%20and%20correlationId%20eq%20%27117b68df-b6ad-468c-9937-ad0b34ba10c2%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"492e28e5-2339-4645-979d-9e96a7190fc8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/492e28e5-2339-4645-979d-9e96a7190fc8/ticks/636910724390716009","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"da1d0e33-aa27-4d40-92f8-c18bdd0795f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.0716009Z","submissionTimestamp":"2019-04-17T04:34:25.0662505Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"731b0b01-12bc-45ea-944f-c1a7abc6b8a4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/731b0b01-12bc-45ea-944f-c1a7abc6b8a4/ticks/636910724389480698","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d0b95bd-c1d0-4fb6-ab01-947ccee6204b","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f89b86c3-8411-4d61-93dd-3773deb5cc2e\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:58.9480698Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"8d959c4e-1da5-4512-b98e-7147d194fae6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/8d959c4e-1da5-4512-b98e-7147d194fae6/ticks/636910724379230816","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:57.9230816Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d5012d04-8db1-4881-a964-b37e001d6493","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d5012d04-8db1-4881-a964-b37e001d6493/ticks/636910724324301347","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4b9462ca-f47d-4d3d-a4ef-9b8ffefe63b4","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ce8cc230-fa1a-4fe9-9457-8299a6cecf99\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A48Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2868825c-0314-4e6b-b31d-18f3153c3e55","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/2868825c-0314-4e6b-b31d-18f3153c3e55/ticks/636921849663374701","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a48c037-7f33-42c7-91aa-5661675ada10","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:06.3374701Z","submissionTimestamp":"2019-04-30T01:36:27.0702476Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"137bf4a8-8246-4206-81fd-9d573fc68b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/137bf4a8-8246-4206-81fd-9d573fc68b77/ticks/636921849552645354","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6b8e600c-d5b2-4ec5-bf55-1f9d0939618b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:35:55.2645354Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"aa684f08-ef84-4ad1-a660-6d9f158799eb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/aa684f08-ef84-4ad1-a660-6d9f158799eb/ticks/636921849552128853","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"286710cd-6e46-445b-86fb-3f12ae51d7df"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:55.2128853Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f7383f2f-8ad6-4337-a964-0e31c165da95","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/f7383f2f-8ad6-4337-a964-0e31c165da95/ticks/636921849551328862","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.1328862Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2be4faea-c309-4cef-838a-1bcfbefd8487","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/2be4faea-c309-4cef-838a-1bcfbefd8487/ticks/636921849550745306","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.0745306Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"bc35e9cd-c843-46a1-ba50-6925377639cd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/bc35e9cd-c843-46a1-ba50-6925377639cd/ticks/636921849540029260","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:54.002926Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"e14c9961-be1b-4e57-987c-1f604dea6177","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/e14c9961-be1b-4e57-987c-1f604dea6177/ticks/636921849537034496","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"42034cdf-9af2-47e1-803a-7c522dfaa918","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:53.7034496Z","submissionTimestamp":"2019-04-30T01:36:15.2351019Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"785c248f-0bd6-4fe3-97d9-1a837f6b4429","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/785c248f-0bd6-4fe3-97d9-1a837f6b4429/ticks/636921849532677739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"91b9d3e0-9bbf-441f-98aa-881097f43ebd","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9adabe86-86cf-4e5a-bda6-50913f74c439\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:53.2677739Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"c1344c8a-fb35-4022-a0b6-05780db3a298","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/c1344c8a-fb35-4022-a0b6-05780db3a298/ticks/636921849528171374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"07a962a4-f63f-4926-91c5-42a9a1696c84","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.8171374Z","submissionTimestamp":"2019-04-30T01:36:10.1676306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"113462da-d9de-4245-8f7f-125c71acbe2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/113462da-d9de-4245-8f7f-125c71acbe2e/ticks/636921849523577324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.3577324Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"d6483c29-0ded-498b-a3b4-75f8c24d94c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d6483c29-0ded-498b-a3b4-75f8c24d94c6/ticks/636921849470909117","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9aa41075-f677-4b70-8655-0e48bed605c7","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"cfed77b0-ae84-4ee3-9b4c-9b51f5b204c1\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.4301347Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"984c6e75-e61c-454b-aee2-7a97d2a37300","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/984c6e75-e61c-454b-aee2-7a97d2a37300/ticks/636910724322951306","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3f2cf520-7502-4905-bd2b-ee9ca227e37b","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"df464a2e-f471-4a8d-8556-caec586a4021\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1f434741-6ab0-40c2-ac1c-3e5fa40b917c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.2951306Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"6f56341a-14d6-4057-9948-a2aba86935ba","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/6f56341a-14d6-4057-9948-a2aba86935ba/ticks/636910724321601324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:52.1601324Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0716eb80-00d2-4046-9b62-a5b4e270c6ac","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/0716eb80-00d2-4046-9b62-a5b4e270c6ac/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"991568ca-2d73-473b-9969-91f642b7d6ca","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/991568ca-2d73-473b-9969-91f642b7d6ca/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"78f54ae4-dc9c-40ff-9da1-c3d7a43d898b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/78f54ae4-dc9c-40ff-9da1-c3d7a43d898b/ticks/636910724290323263","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:47.0909117Z","submissionTimestamp":"2019-04-30T01:36:07.0756504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"090aa188-01ce-4959-8aa5-a319b9ffa91d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/090aa188-01ce-4959-8aa5-a319b9ffa91d/ticks/636921849469858975","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1448d743-4e0b-40e1-af4e-e1e57699e80c","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"310d2f44-d4e2-412c-84f6-b0c7be6fd425\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"03c48476-450e-4e0f-b7a3-c61bff9afcff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:46.9858975Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f70a1c59-0a65-4e1d-ab9d-bea3a0564044","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/f70a1c59-0a65-4e1d-ab9d-bea3a0564044/ticks/636921849468859197","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:46.8859197Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"acb3d9f3-9f73-4807-93b2-3e6294aa3000","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/acb3d9f3-9f73-4807-93b2-3e6294aa3000/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ef92e5ef-d694-4347-b2ae-d8ca302bca0e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/ef92e5ef-d694-4347-b2ae-d8ca302bca0e/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:49.0323263Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"cead4c0a-14a2-42b1-a283-1e9cbb3fe613","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/cead4c0a-14a2-42b1-a283-1e9cbb3fe613/ticks/636910724246373309","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:44.6373309Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '46948' + - '70837' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:34:26 GMT + - Tue, 30 Apr 2019 01:36:48 GMT expires: - '-1' pragma: @@ -5503,86 +6311,86 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A34%3A35Z%20and%20correlationId%20eq%20%27117b68df-b6ad-468c-9937-ad0b34ba10c2%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A59Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"7e7452b4-bf72-4ada-8c59-dd3088afb750","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/7e7452b4-bf72-4ada-8c59-dd3088afb750/ticks/636910724522064076","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37ff0c53-f123-40dc-a9ce-d6f6e1ea484f","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2868825c-0314-4e6b-b31d-18f3153c3e55","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/2868825c-0314-4e6b-b31d-18f3153c3e55/ticks/636921849663374701","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a48c037-7f33-42c7-91aa-5661675ada10","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:12.2064076Z","submissionTimestamp":"2019-04-17T04:34:30.0744818Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0dfaf299-3e95-4646-88eb-aea2f8120c0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/0dfaf299-3e95-4646-88eb-aea2f8120c0b/ticks/636910724413673047","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b836b197-48ff-44ed-b3b7-82244feb421f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.3673047Z","submissionTimestamp":"2019-04-17T04:34:25.1835496Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d4494807-66d3-437d-99e2-16c04d578f00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/d4494807-66d3-437d-99e2-16c04d578f00/ticks/636910724412085680","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"dcd566e1-c371-4de5-8fda-67cb8d8b66e2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-17T04:34:01.208568Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"a535bdac-c9b4-430b-a826-3e47beea01d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/a535bdac-c9b4-430b-a826-3e47beea01d6/ticks/636910724411167745","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"10270dcb-4b5c-49f1-94ef-4684a20439fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:34:01.1167745Z","submissionTimestamp":"2019-04-17T04:34:29.1068221Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"35e4e407-3d44-4ba8-970a-dae775e79818","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/35e4e407-3d44-4ba8-970a-dae775e79818/ticks/636910724410367574","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0367574Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"2d93f38f-3333-40f9-9a7f-4441a474a089","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/2d93f38f-3333-40f9-9a7f-4441a474a089/ticks/636910724410335655","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0335655Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"acea365f-7592-49f4-8854-a9ef7147677b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/acea365f-7592-49f4-8854-a9ef7147677b/ticks/636910724397283349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.7283349Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"492e28e5-2339-4645-979d-9e96a7190fc8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/492e28e5-2339-4645-979d-9e96a7190fc8/ticks/636910724390716009","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"da1d0e33-aa27-4d40-92f8-c18bdd0795f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.0716009Z","submissionTimestamp":"2019-04-17T04:34:25.0662505Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"731b0b01-12bc-45ea-944f-c1a7abc6b8a4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/731b0b01-12bc-45ea-944f-c1a7abc6b8a4/ticks/636910724389480698","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d0b95bd-c1d0-4fb6-ab01-947ccee6204b","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f89b86c3-8411-4d61-93dd-3773deb5cc2e\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:58.9480698Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"8d959c4e-1da5-4512-b98e-7147d194fae6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/8d959c4e-1da5-4512-b98e-7147d194fae6/ticks/636910724379230816","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:57.9230816Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d5012d04-8db1-4881-a964-b37e001d6493","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d5012d04-8db1-4881-a964-b37e001d6493/ticks/636910724324301347","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4b9462ca-f47d-4d3d-a4ef-9b8ffefe63b4","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ce8cc230-fa1a-4fe9-9457-8299a6cecf99\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:06.3374701Z","submissionTimestamp":"2019-04-30T01:36:27.0702476Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"137bf4a8-8246-4206-81fd-9d573fc68b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/137bf4a8-8246-4206-81fd-9d573fc68b77/ticks/636921849552645354","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6b8e600c-d5b2-4ec5-bf55-1f9d0939618b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:35:55.2645354Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"aa684f08-ef84-4ad1-a660-6d9f158799eb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/aa684f08-ef84-4ad1-a660-6d9f158799eb/ticks/636921849552128853","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"286710cd-6e46-445b-86fb-3f12ae51d7df"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:55.2128853Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f7383f2f-8ad6-4337-a964-0e31c165da95","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/f7383f2f-8ad6-4337-a964-0e31c165da95/ticks/636921849551328862","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.1328862Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2be4faea-c309-4cef-838a-1bcfbefd8487","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/2be4faea-c309-4cef-838a-1bcfbefd8487/ticks/636921849550745306","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.0745306Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"bc35e9cd-c843-46a1-ba50-6925377639cd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/bc35e9cd-c843-46a1-ba50-6925377639cd/ticks/636921849540029260","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:54.002926Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"e14c9961-be1b-4e57-987c-1f604dea6177","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/e14c9961-be1b-4e57-987c-1f604dea6177/ticks/636921849537034496","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"42034cdf-9af2-47e1-803a-7c522dfaa918","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:53.7034496Z","submissionTimestamp":"2019-04-30T01:36:15.2351019Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"785c248f-0bd6-4fe3-97d9-1a837f6b4429","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/785c248f-0bd6-4fe3-97d9-1a837f6b4429/ticks/636921849532677739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"91b9d3e0-9bbf-441f-98aa-881097f43ebd","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9adabe86-86cf-4e5a-bda6-50913f74c439\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:53.2677739Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"c1344c8a-fb35-4022-a0b6-05780db3a298","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/c1344c8a-fb35-4022-a0b6-05780db3a298/ticks/636921849528171374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"07a962a4-f63f-4926-91c5-42a9a1696c84","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.8171374Z","submissionTimestamp":"2019-04-30T01:36:10.1676306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"113462da-d9de-4245-8f7f-125c71acbe2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/113462da-d9de-4245-8f7f-125c71acbe2e/ticks/636921849523577324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.3577324Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"d6483c29-0ded-498b-a3b4-75f8c24d94c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d6483c29-0ded-498b-a3b4-75f8c24d94c6/ticks/636921849470909117","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9aa41075-f677-4b70-8655-0e48bed605c7","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"cfed77b0-ae84-4ee3-9b4c-9b51f5b204c1\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.4301347Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"984c6e75-e61c-454b-aee2-7a97d2a37300","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/984c6e75-e61c-454b-aee2-7a97d2a37300/ticks/636910724322951306","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3f2cf520-7502-4905-bd2b-ee9ca227e37b","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"df464a2e-f471-4a8d-8556-caec586a4021\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1f434741-6ab0-40c2-ac1c-3e5fa40b917c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.2951306Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"6f56341a-14d6-4057-9948-a2aba86935ba","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/6f56341a-14d6-4057-9948-a2aba86935ba/ticks/636910724321601324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:52.1601324Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0716eb80-00d2-4046-9b62-a5b4e270c6ac","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/0716eb80-00d2-4046-9b62-a5b4e270c6ac/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"991568ca-2d73-473b-9969-91f642b7d6ca","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/991568ca-2d73-473b-9969-91f642b7d6ca/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"78f54ae4-dc9c-40ff-9da1-c3d7a43d898b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/78f54ae4-dc9c-40ff-9da1-c3d7a43d898b/ticks/636910724290323263","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:47.0909117Z","submissionTimestamp":"2019-04-30T01:36:07.0756504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"090aa188-01ce-4959-8aa5-a319b9ffa91d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/090aa188-01ce-4959-8aa5-a319b9ffa91d/ticks/636921849469858975","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1448d743-4e0b-40e1-af4e-e1e57699e80c","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"310d2f44-d4e2-412c-84f6-b0c7be6fd425\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"03c48476-450e-4e0f-b7a3-c61bff9afcff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:46.9858975Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f70a1c59-0a65-4e1d-ab9d-bea3a0564044","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/f70a1c59-0a65-4e1d-ab9d-bea3a0564044/ticks/636921849468859197","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:46.8859197Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"acb3d9f3-9f73-4807-93b2-3e6294aa3000","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/acb3d9f3-9f73-4807-93b2-3e6294aa3000/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ef92e5ef-d694-4347-b2ae-d8ca302bca0e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/ef92e5ef-d694-4347-b2ae-d8ca302bca0e/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:49.0323263Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"cead4c0a-14a2-42b1-a283-1e9cbb3fe613","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/cead4c0a-14a2-42b1-a283-1e9cbb3fe613/ticks/636910724246373309","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:44.6373309Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '70840' + - '70837' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:34:36 GMT + - Tue, 30 Apr 2019 01:36:59 GMT expires: - '-1' pragma: @@ -5616,86 +6424,90 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A34%3A45Z%20and%20correlationId%20eq%20%27117b68df-b6ad-468c-9937-ad0b34ba10c2%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A37%3A09Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"7e7452b4-bf72-4ada-8c59-dd3088afb750","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/7e7452b4-bf72-4ada-8c59-dd3088afb750/ticks/636910724522064076","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37ff0c53-f123-40dc-a9ce-d6f6e1ea484f","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b74a2c05-dcb3-41ee-9881-b33b867ddab1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/b74a2c05-dcb3-41ee-9881-b33b867ddab1/ticks/636921849971016198","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37604e96-874c-4d76-9fc9-64a982a3b400","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:37.1016198Z","submissionTimestamp":"2019-04-30T01:36:57.0738162Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2868825c-0314-4e6b-b31d-18f3153c3e55","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/2868825c-0314-4e6b-b31d-18f3153c3e55/ticks/636921849663374701","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a48c037-7f33-42c7-91aa-5661675ada10","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:12.2064076Z","submissionTimestamp":"2019-04-17T04:34:30.0744818Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0dfaf299-3e95-4646-88eb-aea2f8120c0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/0dfaf299-3e95-4646-88eb-aea2f8120c0b/ticks/636910724413673047","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b836b197-48ff-44ed-b3b7-82244feb421f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.3673047Z","submissionTimestamp":"2019-04-17T04:34:25.1835496Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d4494807-66d3-437d-99e2-16c04d578f00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/d4494807-66d3-437d-99e2-16c04d578f00/ticks/636910724412085680","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"dcd566e1-c371-4de5-8fda-67cb8d8b66e2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-17T04:34:01.208568Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"a535bdac-c9b4-430b-a826-3e47beea01d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/a535bdac-c9b4-430b-a826-3e47beea01d6/ticks/636910724411167745","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"10270dcb-4b5c-49f1-94ef-4684a20439fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:34:01.1167745Z","submissionTimestamp":"2019-04-17T04:34:29.1068221Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"35e4e407-3d44-4ba8-970a-dae775e79818","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/35e4e407-3d44-4ba8-970a-dae775e79818/ticks/636910724410367574","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0367574Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"2d93f38f-3333-40f9-9a7f-4441a474a089","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/2d93f38f-3333-40f9-9a7f-4441a474a089/ticks/636910724410335655","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0335655Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"acea365f-7592-49f4-8854-a9ef7147677b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/acea365f-7592-49f4-8854-a9ef7147677b/ticks/636910724397283349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.7283349Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"492e28e5-2339-4645-979d-9e96a7190fc8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/492e28e5-2339-4645-979d-9e96a7190fc8/ticks/636910724390716009","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"da1d0e33-aa27-4d40-92f8-c18bdd0795f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.0716009Z","submissionTimestamp":"2019-04-17T04:34:25.0662505Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"731b0b01-12bc-45ea-944f-c1a7abc6b8a4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/731b0b01-12bc-45ea-944f-c1a7abc6b8a4/ticks/636910724389480698","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d0b95bd-c1d0-4fb6-ab01-947ccee6204b","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f89b86c3-8411-4d61-93dd-3773deb5cc2e\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:58.9480698Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"8d959c4e-1da5-4512-b98e-7147d194fae6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/8d959c4e-1da5-4512-b98e-7147d194fae6/ticks/636910724379230816","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:57.9230816Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d5012d04-8db1-4881-a964-b37e001d6493","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d5012d04-8db1-4881-a964-b37e001d6493/ticks/636910724324301347","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4b9462ca-f47d-4d3d-a4ef-9b8ffefe63b4","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ce8cc230-fa1a-4fe9-9457-8299a6cecf99\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:06.3374701Z","submissionTimestamp":"2019-04-30T01:36:27.0702476Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"137bf4a8-8246-4206-81fd-9d573fc68b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/137bf4a8-8246-4206-81fd-9d573fc68b77/ticks/636921849552645354","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6b8e600c-d5b2-4ec5-bf55-1f9d0939618b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:35:55.2645354Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"aa684f08-ef84-4ad1-a660-6d9f158799eb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/aa684f08-ef84-4ad1-a660-6d9f158799eb/ticks/636921849552128853","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"286710cd-6e46-445b-86fb-3f12ae51d7df"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:55.2128853Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f7383f2f-8ad6-4337-a964-0e31c165da95","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/f7383f2f-8ad6-4337-a964-0e31c165da95/ticks/636921849551328862","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.1328862Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2be4faea-c309-4cef-838a-1bcfbefd8487","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/2be4faea-c309-4cef-838a-1bcfbefd8487/ticks/636921849550745306","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.0745306Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"bc35e9cd-c843-46a1-ba50-6925377639cd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/bc35e9cd-c843-46a1-ba50-6925377639cd/ticks/636921849540029260","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:54.002926Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"e14c9961-be1b-4e57-987c-1f604dea6177","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/e14c9961-be1b-4e57-987c-1f604dea6177/ticks/636921849537034496","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"42034cdf-9af2-47e1-803a-7c522dfaa918","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:53.7034496Z","submissionTimestamp":"2019-04-30T01:36:15.2351019Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"785c248f-0bd6-4fe3-97d9-1a837f6b4429","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/785c248f-0bd6-4fe3-97d9-1a837f6b4429/ticks/636921849532677739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"91b9d3e0-9bbf-441f-98aa-881097f43ebd","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9adabe86-86cf-4e5a-bda6-50913f74c439\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:53.2677739Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"c1344c8a-fb35-4022-a0b6-05780db3a298","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/c1344c8a-fb35-4022-a0b6-05780db3a298/ticks/636921849528171374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"07a962a4-f63f-4926-91c5-42a9a1696c84","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.8171374Z","submissionTimestamp":"2019-04-30T01:36:10.1676306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"113462da-d9de-4245-8f7f-125c71acbe2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/113462da-d9de-4245-8f7f-125c71acbe2e/ticks/636921849523577324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.3577324Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"d6483c29-0ded-498b-a3b4-75f8c24d94c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d6483c29-0ded-498b-a3b4-75f8c24d94c6/ticks/636921849470909117","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9aa41075-f677-4b70-8655-0e48bed605c7","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"cfed77b0-ae84-4ee3-9b4c-9b51f5b204c1\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.4301347Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"984c6e75-e61c-454b-aee2-7a97d2a37300","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/984c6e75-e61c-454b-aee2-7a97d2a37300/ticks/636910724322951306","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3f2cf520-7502-4905-bd2b-ee9ca227e37b","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"df464a2e-f471-4a8d-8556-caec586a4021\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1f434741-6ab0-40c2-ac1c-3e5fa40b917c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.2951306Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"6f56341a-14d6-4057-9948-a2aba86935ba","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/6f56341a-14d6-4057-9948-a2aba86935ba/ticks/636910724321601324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:52.1601324Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0716eb80-00d2-4046-9b62-a5b4e270c6ac","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/0716eb80-00d2-4046-9b62-a5b4e270c6ac/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"991568ca-2d73-473b-9969-91f642b7d6ca","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/991568ca-2d73-473b-9969-91f642b7d6ca/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"78f54ae4-dc9c-40ff-9da1-c3d7a43d898b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/78f54ae4-dc9c-40ff-9da1-c3d7a43d898b/ticks/636910724290323263","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:47.0909117Z","submissionTimestamp":"2019-04-30T01:36:07.0756504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"090aa188-01ce-4959-8aa5-a319b9ffa91d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/090aa188-01ce-4959-8aa5-a319b9ffa91d/ticks/636921849469858975","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1448d743-4e0b-40e1-af4e-e1e57699e80c","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"310d2f44-d4e2-412c-84f6-b0c7be6fd425\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"03c48476-450e-4e0f-b7a3-c61bff9afcff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:46.9858975Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f70a1c59-0a65-4e1d-ab9d-bea3a0564044","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/f70a1c59-0a65-4e1d-ab9d-bea3a0564044/ticks/636921849468859197","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:46.8859197Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"acb3d9f3-9f73-4807-93b2-3e6294aa3000","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/acb3d9f3-9f73-4807-93b2-3e6294aa3000/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ef92e5ef-d694-4347-b2ae-d8ca302bca0e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/ef92e5ef-d694-4347-b2ae-d8ca302bca0e/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:49.0323263Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"cead4c0a-14a2-42b1-a283-1e9cbb3fe613","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/cead4c0a-14a2-42b1-a283-1e9cbb3fe613/ticks/636910724246373309","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:44.6373309Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '70840' + - '74440' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:34:47 GMT + - Tue, 30 Apr 2019 01:37:09 GMT expires: - '-1' pragma: @@ -5727,10 +6539,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461312585726030?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450187476895200?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -5742,7 +6554,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:34:49 GMT + - Tue, 30 Apr 2019 01:37:12 GMT expires: - '-1' pragma: @@ -5772,86 +6584,90 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A34%3A56Z%20and%20correlationId%20eq%20%27117b68df-b6ad-468c-9937-ad0b34ba10c2%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A37%3A20Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"7e7452b4-bf72-4ada-8c59-dd3088afb750","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/7e7452b4-bf72-4ada-8c59-dd3088afb750/ticks/636910724522064076","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37ff0c53-f123-40dc-a9ce-d6f6e1ea484f","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b74a2c05-dcb3-41ee-9881-b33b867ddab1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/b74a2c05-dcb3-41ee-9881-b33b867ddab1/ticks/636921849971016198","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37604e96-874c-4d76-9fc9-64a982a3b400","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:37.1016198Z","submissionTimestamp":"2019-04-30T01:36:57.0738162Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2868825c-0314-4e6b-b31d-18f3153c3e55","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/2868825c-0314-4e6b-b31d-18f3153c3e55/ticks/636921849663374701","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a48c037-7f33-42c7-91aa-5661675ada10","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:12.2064076Z","submissionTimestamp":"2019-04-17T04:34:30.0744818Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0dfaf299-3e95-4646-88eb-aea2f8120c0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/0dfaf299-3e95-4646-88eb-aea2f8120c0b/ticks/636910724413673047","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b836b197-48ff-44ed-b3b7-82244feb421f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.3673047Z","submissionTimestamp":"2019-04-17T04:34:25.1835496Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d4494807-66d3-437d-99e2-16c04d578f00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/d4494807-66d3-437d-99e2-16c04d578f00/ticks/636910724412085680","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"dcd566e1-c371-4de5-8fda-67cb8d8b66e2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-17T04:34:01.208568Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"a535bdac-c9b4-430b-a826-3e47beea01d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/a535bdac-c9b4-430b-a826-3e47beea01d6/ticks/636910724411167745","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"10270dcb-4b5c-49f1-94ef-4684a20439fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:34:01.1167745Z","submissionTimestamp":"2019-04-17T04:34:29.1068221Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"35e4e407-3d44-4ba8-970a-dae775e79818","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/35e4e407-3d44-4ba8-970a-dae775e79818/ticks/636910724410367574","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0367574Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"2d93f38f-3333-40f9-9a7f-4441a474a089","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/2d93f38f-3333-40f9-9a7f-4441a474a089/ticks/636910724410335655","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0335655Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"acea365f-7592-49f4-8854-a9ef7147677b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/acea365f-7592-49f4-8854-a9ef7147677b/ticks/636910724397283349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.7283349Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"492e28e5-2339-4645-979d-9e96a7190fc8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/492e28e5-2339-4645-979d-9e96a7190fc8/ticks/636910724390716009","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"da1d0e33-aa27-4d40-92f8-c18bdd0795f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.0716009Z","submissionTimestamp":"2019-04-17T04:34:25.0662505Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"731b0b01-12bc-45ea-944f-c1a7abc6b8a4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/731b0b01-12bc-45ea-944f-c1a7abc6b8a4/ticks/636910724389480698","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d0b95bd-c1d0-4fb6-ab01-947ccee6204b","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f89b86c3-8411-4d61-93dd-3773deb5cc2e\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:58.9480698Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"8d959c4e-1da5-4512-b98e-7147d194fae6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/8d959c4e-1da5-4512-b98e-7147d194fae6/ticks/636910724379230816","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:57.9230816Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d5012d04-8db1-4881-a964-b37e001d6493","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d5012d04-8db1-4881-a964-b37e001d6493/ticks/636910724324301347","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4b9462ca-f47d-4d3d-a4ef-9b8ffefe63b4","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ce8cc230-fa1a-4fe9-9457-8299a6cecf99\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:06.3374701Z","submissionTimestamp":"2019-04-30T01:36:27.0702476Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"137bf4a8-8246-4206-81fd-9d573fc68b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/137bf4a8-8246-4206-81fd-9d573fc68b77/ticks/636921849552645354","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6b8e600c-d5b2-4ec5-bf55-1f9d0939618b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:35:55.2645354Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"aa684f08-ef84-4ad1-a660-6d9f158799eb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/aa684f08-ef84-4ad1-a660-6d9f158799eb/ticks/636921849552128853","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"286710cd-6e46-445b-86fb-3f12ae51d7df"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:55.2128853Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f7383f2f-8ad6-4337-a964-0e31c165da95","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/f7383f2f-8ad6-4337-a964-0e31c165da95/ticks/636921849551328862","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.1328862Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2be4faea-c309-4cef-838a-1bcfbefd8487","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/2be4faea-c309-4cef-838a-1bcfbefd8487/ticks/636921849550745306","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.0745306Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"bc35e9cd-c843-46a1-ba50-6925377639cd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/bc35e9cd-c843-46a1-ba50-6925377639cd/ticks/636921849540029260","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:54.002926Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"e14c9961-be1b-4e57-987c-1f604dea6177","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/e14c9961-be1b-4e57-987c-1f604dea6177/ticks/636921849537034496","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"42034cdf-9af2-47e1-803a-7c522dfaa918","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:53.7034496Z","submissionTimestamp":"2019-04-30T01:36:15.2351019Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"785c248f-0bd6-4fe3-97d9-1a837f6b4429","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/785c248f-0bd6-4fe3-97d9-1a837f6b4429/ticks/636921849532677739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"91b9d3e0-9bbf-441f-98aa-881097f43ebd","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9adabe86-86cf-4e5a-bda6-50913f74c439\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:53.2677739Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"c1344c8a-fb35-4022-a0b6-05780db3a298","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/c1344c8a-fb35-4022-a0b6-05780db3a298/ticks/636921849528171374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"07a962a4-f63f-4926-91c5-42a9a1696c84","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.8171374Z","submissionTimestamp":"2019-04-30T01:36:10.1676306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"113462da-d9de-4245-8f7f-125c71acbe2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/113462da-d9de-4245-8f7f-125c71acbe2e/ticks/636921849523577324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.3577324Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"d6483c29-0ded-498b-a3b4-75f8c24d94c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d6483c29-0ded-498b-a3b4-75f8c24d94c6/ticks/636921849470909117","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9aa41075-f677-4b70-8655-0e48bed605c7","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"cfed77b0-ae84-4ee3-9b4c-9b51f5b204c1\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.4301347Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"984c6e75-e61c-454b-aee2-7a97d2a37300","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/984c6e75-e61c-454b-aee2-7a97d2a37300/ticks/636910724322951306","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3f2cf520-7502-4905-bd2b-ee9ca227e37b","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"df464a2e-f471-4a8d-8556-caec586a4021\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1f434741-6ab0-40c2-ac1c-3e5fa40b917c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.2951306Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"6f56341a-14d6-4057-9948-a2aba86935ba","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/6f56341a-14d6-4057-9948-a2aba86935ba/ticks/636910724321601324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:52.1601324Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0716eb80-00d2-4046-9b62-a5b4e270c6ac","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/0716eb80-00d2-4046-9b62-a5b4e270c6ac/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"991568ca-2d73-473b-9969-91f642b7d6ca","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/991568ca-2d73-473b-9969-91f642b7d6ca/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"78f54ae4-dc9c-40ff-9da1-c3d7a43d898b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/78f54ae4-dc9c-40ff-9da1-c3d7a43d898b/ticks/636910724290323263","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:47.0909117Z","submissionTimestamp":"2019-04-30T01:36:07.0756504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"090aa188-01ce-4959-8aa5-a319b9ffa91d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/090aa188-01ce-4959-8aa5-a319b9ffa91d/ticks/636921849469858975","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1448d743-4e0b-40e1-af4e-e1e57699e80c","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"310d2f44-d4e2-412c-84f6-b0c7be6fd425\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"03c48476-450e-4e0f-b7a3-c61bff9afcff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:46.9858975Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f70a1c59-0a65-4e1d-ab9d-bea3a0564044","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/f70a1c59-0a65-4e1d-ab9d-bea3a0564044/ticks/636921849468859197","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:46.8859197Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"acb3d9f3-9f73-4807-93b2-3e6294aa3000","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/acb3d9f3-9f73-4807-93b2-3e6294aa3000/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ef92e5ef-d694-4347-b2ae-d8ca302bca0e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/ef92e5ef-d694-4347-b2ae-d8ca302bca0e/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:49.0323263Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"cead4c0a-14a2-42b1-a283-1e9cbb3fe613","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/cead4c0a-14a2-42b1-a283-1e9cbb3fe613/ticks/636910724246373309","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:44.6373309Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '70840' + - '74440' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:34:57 GMT + - Tue, 30 Apr 2019 01:37:20 GMT expires: - '-1' pragma: @@ -5885,86 +6701,90 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A35%3A06Z%20and%20correlationId%20eq%20%27117b68df-b6ad-468c-9937-ad0b34ba10c2%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A37%3A30Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"7e7452b4-bf72-4ada-8c59-dd3088afb750","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/7e7452b4-bf72-4ada-8c59-dd3088afb750/ticks/636910724522064076","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37ff0c53-f123-40dc-a9ce-d6f6e1ea484f","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b74a2c05-dcb3-41ee-9881-b33b867ddab1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/b74a2c05-dcb3-41ee-9881-b33b867ddab1/ticks/636921849971016198","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37604e96-874c-4d76-9fc9-64a982a3b400","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:12.2064076Z","submissionTimestamp":"2019-04-17T04:34:30.0744818Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0dfaf299-3e95-4646-88eb-aea2f8120c0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/0dfaf299-3e95-4646-88eb-aea2f8120c0b/ticks/636910724413673047","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b836b197-48ff-44ed-b3b7-82244feb421f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.3673047Z","submissionTimestamp":"2019-04-17T04:34:25.1835496Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d4494807-66d3-437d-99e2-16c04d578f00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/d4494807-66d3-437d-99e2-16c04d578f00/ticks/636910724412085680","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"dcd566e1-c371-4de5-8fda-67cb8d8b66e2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-17T04:34:01.208568Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"a535bdac-c9b4-430b-a826-3e47beea01d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/a535bdac-c9b4-430b-a826-3e47beea01d6/ticks/636910724411167745","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"10270dcb-4b5c-49f1-94ef-4684a20439fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:34:01.1167745Z","submissionTimestamp":"2019-04-17T04:34:29.1068221Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"35e4e407-3d44-4ba8-970a-dae775e79818","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/35e4e407-3d44-4ba8-970a-dae775e79818/ticks/636910724410367574","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0367574Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"2d93f38f-3333-40f9-9a7f-4441a474a089","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/2d93f38f-3333-40f9-9a7f-4441a474a089/ticks/636910724410335655","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0335655Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"acea365f-7592-49f4-8854-a9ef7147677b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/acea365f-7592-49f4-8854-a9ef7147677b/ticks/636910724397283349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.7283349Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"492e28e5-2339-4645-979d-9e96a7190fc8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/492e28e5-2339-4645-979d-9e96a7190fc8/ticks/636910724390716009","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"da1d0e33-aa27-4d40-92f8-c18bdd0795f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.0716009Z","submissionTimestamp":"2019-04-17T04:34:25.0662505Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"731b0b01-12bc-45ea-944f-c1a7abc6b8a4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/731b0b01-12bc-45ea-944f-c1a7abc6b8a4/ticks/636910724389480698","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d0b95bd-c1d0-4fb6-ab01-947ccee6204b","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f89b86c3-8411-4d61-93dd-3773deb5cc2e\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:58.9480698Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"8d959c4e-1da5-4512-b98e-7147d194fae6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/8d959c4e-1da5-4512-b98e-7147d194fae6/ticks/636910724379230816","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:57.9230816Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d5012d04-8db1-4881-a964-b37e001d6493","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d5012d04-8db1-4881-a964-b37e001d6493/ticks/636910724324301347","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4b9462ca-f47d-4d3d-a4ef-9b8ffefe63b4","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ce8cc230-fa1a-4fe9-9457-8299a6cecf99\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:37.1016198Z","submissionTimestamp":"2019-04-30T01:36:57.0738162Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2868825c-0314-4e6b-b31d-18f3153c3e55","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/2868825c-0314-4e6b-b31d-18f3153c3e55/ticks/636921849663374701","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a48c037-7f33-42c7-91aa-5661675ada10","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:06.3374701Z","submissionTimestamp":"2019-04-30T01:36:27.0702476Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"137bf4a8-8246-4206-81fd-9d573fc68b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/137bf4a8-8246-4206-81fd-9d573fc68b77/ticks/636921849552645354","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6b8e600c-d5b2-4ec5-bf55-1f9d0939618b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:35:55.2645354Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"aa684f08-ef84-4ad1-a660-6d9f158799eb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/aa684f08-ef84-4ad1-a660-6d9f158799eb/ticks/636921849552128853","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"286710cd-6e46-445b-86fb-3f12ae51d7df"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:55.2128853Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f7383f2f-8ad6-4337-a964-0e31c165da95","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/f7383f2f-8ad6-4337-a964-0e31c165da95/ticks/636921849551328862","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.1328862Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2be4faea-c309-4cef-838a-1bcfbefd8487","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/2be4faea-c309-4cef-838a-1bcfbefd8487/ticks/636921849550745306","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.0745306Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"bc35e9cd-c843-46a1-ba50-6925377639cd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/bc35e9cd-c843-46a1-ba50-6925377639cd/ticks/636921849540029260","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:54.002926Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"e14c9961-be1b-4e57-987c-1f604dea6177","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/e14c9961-be1b-4e57-987c-1f604dea6177/ticks/636921849537034496","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"42034cdf-9af2-47e1-803a-7c522dfaa918","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:53.7034496Z","submissionTimestamp":"2019-04-30T01:36:15.2351019Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"785c248f-0bd6-4fe3-97d9-1a837f6b4429","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/785c248f-0bd6-4fe3-97d9-1a837f6b4429/ticks/636921849532677739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"91b9d3e0-9bbf-441f-98aa-881097f43ebd","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9adabe86-86cf-4e5a-bda6-50913f74c439\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:53.2677739Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"c1344c8a-fb35-4022-a0b6-05780db3a298","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/c1344c8a-fb35-4022-a0b6-05780db3a298/ticks/636921849528171374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"07a962a4-f63f-4926-91c5-42a9a1696c84","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.8171374Z","submissionTimestamp":"2019-04-30T01:36:10.1676306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"113462da-d9de-4245-8f7f-125c71acbe2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/113462da-d9de-4245-8f7f-125c71acbe2e/ticks/636921849523577324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.3577324Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"d6483c29-0ded-498b-a3b4-75f8c24d94c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d6483c29-0ded-498b-a3b4-75f8c24d94c6/ticks/636921849470909117","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9aa41075-f677-4b70-8655-0e48bed605c7","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"cfed77b0-ae84-4ee3-9b4c-9b51f5b204c1\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.4301347Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"984c6e75-e61c-454b-aee2-7a97d2a37300","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/984c6e75-e61c-454b-aee2-7a97d2a37300/ticks/636910724322951306","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3f2cf520-7502-4905-bd2b-ee9ca227e37b","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"df464a2e-f471-4a8d-8556-caec586a4021\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1f434741-6ab0-40c2-ac1c-3e5fa40b917c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.2951306Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"6f56341a-14d6-4057-9948-a2aba86935ba","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/6f56341a-14d6-4057-9948-a2aba86935ba/ticks/636910724321601324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:52.1601324Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0716eb80-00d2-4046-9b62-a5b4e270c6ac","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/0716eb80-00d2-4046-9b62-a5b4e270c6ac/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"991568ca-2d73-473b-9969-91f642b7d6ca","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/991568ca-2d73-473b-9969-91f642b7d6ca/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"78f54ae4-dc9c-40ff-9da1-c3d7a43d898b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/78f54ae4-dc9c-40ff-9da1-c3d7a43d898b/ticks/636910724290323263","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:47.0909117Z","submissionTimestamp":"2019-04-30T01:36:07.0756504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"090aa188-01ce-4959-8aa5-a319b9ffa91d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/090aa188-01ce-4959-8aa5-a319b9ffa91d/ticks/636921849469858975","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1448d743-4e0b-40e1-af4e-e1e57699e80c","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"310d2f44-d4e2-412c-84f6-b0c7be6fd425\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"03c48476-450e-4e0f-b7a3-c61bff9afcff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:46.9858975Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f70a1c59-0a65-4e1d-ab9d-bea3a0564044","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/f70a1c59-0a65-4e1d-ab9d-bea3a0564044/ticks/636921849468859197","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:46.8859197Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"acb3d9f3-9f73-4807-93b2-3e6294aa3000","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/acb3d9f3-9f73-4807-93b2-3e6294aa3000/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ef92e5ef-d694-4347-b2ae-d8ca302bca0e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/ef92e5ef-d694-4347-b2ae-d8ca302bca0e/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:49.0323263Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"cead4c0a-14a2-42b1-a283-1e9cbb3fe613","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/cead4c0a-14a2-42b1-a283-1e9cbb3fe613/ticks/636910724246373309","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:44.6373309Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '70840' + - '74440' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:35:08 GMT + - Tue, 30 Apr 2019 01:37:29 GMT expires: - '-1' pragma: @@ -5998,90 +6818,98 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A35%3A17Z%20and%20correlationId%20eq%20%27117b68df-b6ad-468c-9937-ad0b34ba10c2%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A37%3A41Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"e129926f-e20a-4ce4-8ddd-194fc20b8977","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/e129926f-e20a-4ce4-8ddd-194fc20b8977/ticks/636910724828662754","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"53d9280a-a2d8-46c3-8d4a-29a1124395d0","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"055f57d2-a946-47bd-868e-da35ef75c053","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/055f57d2-a946-47bd-868e-da35ef75c053/ticks/636921850294498097","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eef7b453-7a1f-48e9-a1df-5394e77a419b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:09.4498097Z","submissionTimestamp":"2019-04-30T01:37:31.1072699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"879cdfc5-12ac-4da4-8325-c6c2faee5bee","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/879cdfc5-12ac-4da4-8325-c6c2faee5bee/ticks/636921850133255249","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"985a3e8f-6bfc-4eed-8c1f-2c4ff49f2117","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:42.8662754Z","submissionTimestamp":"2019-04-17T04:35:09.0778502Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"7e7452b4-bf72-4ada-8c59-dd3088afb750","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/7e7452b4-bf72-4ada-8c59-dd3088afb750/ticks/636910724522064076","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37ff0c53-f123-40dc-a9ce-d6f6e1ea484f","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:53.3255249Z","submissionTimestamp":"2019-04-30T01:37:13.0712561Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b74a2c05-dcb3-41ee-9881-b33b867ddab1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/b74a2c05-dcb3-41ee-9881-b33b867ddab1/ticks/636921849971016198","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37604e96-874c-4d76-9fc9-64a982a3b400","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:12.2064076Z","submissionTimestamp":"2019-04-17T04:34:30.0744818Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0dfaf299-3e95-4646-88eb-aea2f8120c0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/0dfaf299-3e95-4646-88eb-aea2f8120c0b/ticks/636910724413673047","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b836b197-48ff-44ed-b3b7-82244feb421f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.3673047Z","submissionTimestamp":"2019-04-17T04:34:25.1835496Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d4494807-66d3-437d-99e2-16c04d578f00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/d4494807-66d3-437d-99e2-16c04d578f00/ticks/636910724412085680","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"dcd566e1-c371-4de5-8fda-67cb8d8b66e2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-17T04:34:01.208568Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"a535bdac-c9b4-430b-a826-3e47beea01d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/a535bdac-c9b4-430b-a826-3e47beea01d6/ticks/636910724411167745","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"10270dcb-4b5c-49f1-94ef-4684a20439fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:34:01.1167745Z","submissionTimestamp":"2019-04-17T04:34:29.1068221Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"35e4e407-3d44-4ba8-970a-dae775e79818","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/35e4e407-3d44-4ba8-970a-dae775e79818/ticks/636910724410367574","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0367574Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"2d93f38f-3333-40f9-9a7f-4441a474a089","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/2d93f38f-3333-40f9-9a7f-4441a474a089/ticks/636910724410335655","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0335655Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"acea365f-7592-49f4-8854-a9ef7147677b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/acea365f-7592-49f4-8854-a9ef7147677b/ticks/636910724397283349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.7283349Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"492e28e5-2339-4645-979d-9e96a7190fc8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/492e28e5-2339-4645-979d-9e96a7190fc8/ticks/636910724390716009","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"da1d0e33-aa27-4d40-92f8-c18bdd0795f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.0716009Z","submissionTimestamp":"2019-04-17T04:34:25.0662505Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"731b0b01-12bc-45ea-944f-c1a7abc6b8a4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/731b0b01-12bc-45ea-944f-c1a7abc6b8a4/ticks/636910724389480698","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d0b95bd-c1d0-4fb6-ab01-947ccee6204b","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f89b86c3-8411-4d61-93dd-3773deb5cc2e\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:58.9480698Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"8d959c4e-1da5-4512-b98e-7147d194fae6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/8d959c4e-1da5-4512-b98e-7147d194fae6/ticks/636910724379230816","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:57.9230816Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d5012d04-8db1-4881-a964-b37e001d6493","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d5012d04-8db1-4881-a964-b37e001d6493/ticks/636910724324301347","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4b9462ca-f47d-4d3d-a4ef-9b8ffefe63b4","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ce8cc230-fa1a-4fe9-9457-8299a6cecf99\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:37.1016198Z","submissionTimestamp":"2019-04-30T01:36:57.0738162Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2868825c-0314-4e6b-b31d-18f3153c3e55","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/2868825c-0314-4e6b-b31d-18f3153c3e55/ticks/636921849663374701","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a48c037-7f33-42c7-91aa-5661675ada10","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:06.3374701Z","submissionTimestamp":"2019-04-30T01:36:27.0702476Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"137bf4a8-8246-4206-81fd-9d573fc68b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/137bf4a8-8246-4206-81fd-9d573fc68b77/ticks/636921849552645354","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6b8e600c-d5b2-4ec5-bf55-1f9d0939618b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:35:55.2645354Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"aa684f08-ef84-4ad1-a660-6d9f158799eb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/aa684f08-ef84-4ad1-a660-6d9f158799eb/ticks/636921849552128853","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"286710cd-6e46-445b-86fb-3f12ae51d7df"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:55.2128853Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f7383f2f-8ad6-4337-a964-0e31c165da95","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/f7383f2f-8ad6-4337-a964-0e31c165da95/ticks/636921849551328862","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.1328862Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2be4faea-c309-4cef-838a-1bcfbefd8487","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/2be4faea-c309-4cef-838a-1bcfbefd8487/ticks/636921849550745306","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.0745306Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"bc35e9cd-c843-46a1-ba50-6925377639cd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/bc35e9cd-c843-46a1-ba50-6925377639cd/ticks/636921849540029260","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:54.002926Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"e14c9961-be1b-4e57-987c-1f604dea6177","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/e14c9961-be1b-4e57-987c-1f604dea6177/ticks/636921849537034496","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"42034cdf-9af2-47e1-803a-7c522dfaa918","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:53.7034496Z","submissionTimestamp":"2019-04-30T01:36:15.2351019Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"785c248f-0bd6-4fe3-97d9-1a837f6b4429","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/785c248f-0bd6-4fe3-97d9-1a837f6b4429/ticks/636921849532677739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"91b9d3e0-9bbf-441f-98aa-881097f43ebd","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9adabe86-86cf-4e5a-bda6-50913f74c439\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:53.2677739Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"c1344c8a-fb35-4022-a0b6-05780db3a298","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/c1344c8a-fb35-4022-a0b6-05780db3a298/ticks/636921849528171374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"07a962a4-f63f-4926-91c5-42a9a1696c84","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.8171374Z","submissionTimestamp":"2019-04-30T01:36:10.1676306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"113462da-d9de-4245-8f7f-125c71acbe2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/113462da-d9de-4245-8f7f-125c71acbe2e/ticks/636921849523577324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.3577324Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"d6483c29-0ded-498b-a3b4-75f8c24d94c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d6483c29-0ded-498b-a3b4-75f8c24d94c6/ticks/636921849470909117","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9aa41075-f677-4b70-8655-0e48bed605c7","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"cfed77b0-ae84-4ee3-9b4c-9b51f5b204c1\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.4301347Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"984c6e75-e61c-454b-aee2-7a97d2a37300","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/984c6e75-e61c-454b-aee2-7a97d2a37300/ticks/636910724322951306","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3f2cf520-7502-4905-bd2b-ee9ca227e37b","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"df464a2e-f471-4a8d-8556-caec586a4021\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1f434741-6ab0-40c2-ac1c-3e5fa40b917c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.2951306Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"6f56341a-14d6-4057-9948-a2aba86935ba","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/6f56341a-14d6-4057-9948-a2aba86935ba/ticks/636910724321601324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:52.1601324Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0716eb80-00d2-4046-9b62-a5b4e270c6ac","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/0716eb80-00d2-4046-9b62-a5b4e270c6ac/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"991568ca-2d73-473b-9969-91f642b7d6ca","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/991568ca-2d73-473b-9969-91f642b7d6ca/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"78f54ae4-dc9c-40ff-9da1-c3d7a43d898b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/78f54ae4-dc9c-40ff-9da1-c3d7a43d898b/ticks/636910724290323263","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:47.0909117Z","submissionTimestamp":"2019-04-30T01:36:07.0756504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"090aa188-01ce-4959-8aa5-a319b9ffa91d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/090aa188-01ce-4959-8aa5-a319b9ffa91d/ticks/636921849469858975","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1448d743-4e0b-40e1-af4e-e1e57699e80c","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"310d2f44-d4e2-412c-84f6-b0c7be6fd425\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"03c48476-450e-4e0f-b7a3-c61bff9afcff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:46.9858975Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f70a1c59-0a65-4e1d-ab9d-bea3a0564044","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/f70a1c59-0a65-4e1d-ab9d-bea3a0564044/ticks/636921849468859197","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:46.8859197Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"acb3d9f3-9f73-4807-93b2-3e6294aa3000","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/acb3d9f3-9f73-4807-93b2-3e6294aa3000/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ef92e5ef-d694-4347-b2ae-d8ca302bca0e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/ef92e5ef-d694-4347-b2ae-d8ca302bca0e/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:49.0323263Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"cead4c0a-14a2-42b1-a283-1e9cbb3fe613","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/cead4c0a-14a2-42b1-a283-1e9cbb3fe613/ticks/636910724246373309","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:44.6373309Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '74443' + - '81646' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:35:18 GMT + - Tue, 30 Apr 2019 01:37:41 GMT expires: - '-1' pragma: @@ -6113,10 +6941,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461312585726030?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450187476895200?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -6128,7 +6956,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:35:20 GMT + - Tue, 30 Apr 2019 01:37:42 GMT expires: - '-1' pragma: @@ -6158,90 +6986,102 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A35%3A27Z%20and%20correlationId%20eq%20%27117b68df-b6ad-468c-9937-ad0b34ba10c2%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A37%3A51Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"e129926f-e20a-4ce4-8ddd-194fc20b8977","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/e129926f-e20a-4ce4-8ddd-194fc20b8977/ticks/636910724828662754","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"53d9280a-a2d8-46c3-8d4a-29a1124395d0","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"8f44d134-7792-47f0-9023-46334bfa2e47","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/8f44d134-7792-47f0-9023-46334bfa2e47/ticks/636921850451225155","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dc20a45-8be5-410e-abee-fc7ce7011f34","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:25.1225155Z","submissionTimestamp":"2019-04-30T01:37:40.0865242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"055f57d2-a946-47bd-868e-da35ef75c053","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/055f57d2-a946-47bd-868e-da35ef75c053/ticks/636921850294498097","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eef7b453-7a1f-48e9-a1df-5394e77a419b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:42.8662754Z","submissionTimestamp":"2019-04-17T04:35:09.0778502Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"7e7452b4-bf72-4ada-8c59-dd3088afb750","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/7e7452b4-bf72-4ada-8c59-dd3088afb750/ticks/636910724522064076","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37ff0c53-f123-40dc-a9ce-d6f6e1ea484f","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:09.4498097Z","submissionTimestamp":"2019-04-30T01:37:31.1072699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"879cdfc5-12ac-4da4-8325-c6c2faee5bee","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/879cdfc5-12ac-4da4-8325-c6c2faee5bee/ticks/636921850133255249","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"985a3e8f-6bfc-4eed-8c1f-2c4ff49f2117","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:12.2064076Z","submissionTimestamp":"2019-04-17T04:34:30.0744818Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0dfaf299-3e95-4646-88eb-aea2f8120c0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/0dfaf299-3e95-4646-88eb-aea2f8120c0b/ticks/636910724413673047","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b836b197-48ff-44ed-b3b7-82244feb421f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.3673047Z","submissionTimestamp":"2019-04-17T04:34:25.1835496Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d4494807-66d3-437d-99e2-16c04d578f00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/d4494807-66d3-437d-99e2-16c04d578f00/ticks/636910724412085680","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"dcd566e1-c371-4de5-8fda-67cb8d8b66e2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-17T04:34:01.208568Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"a535bdac-c9b4-430b-a826-3e47beea01d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/a535bdac-c9b4-430b-a826-3e47beea01d6/ticks/636910724411167745","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"10270dcb-4b5c-49f1-94ef-4684a20439fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:34:01.1167745Z","submissionTimestamp":"2019-04-17T04:34:29.1068221Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"35e4e407-3d44-4ba8-970a-dae775e79818","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/35e4e407-3d44-4ba8-970a-dae775e79818/ticks/636910724410367574","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0367574Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"2d93f38f-3333-40f9-9a7f-4441a474a089","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/2d93f38f-3333-40f9-9a7f-4441a474a089/ticks/636910724410335655","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0335655Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"acea365f-7592-49f4-8854-a9ef7147677b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/acea365f-7592-49f4-8854-a9ef7147677b/ticks/636910724397283349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.7283349Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"492e28e5-2339-4645-979d-9e96a7190fc8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/492e28e5-2339-4645-979d-9e96a7190fc8/ticks/636910724390716009","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"da1d0e33-aa27-4d40-92f8-c18bdd0795f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.0716009Z","submissionTimestamp":"2019-04-17T04:34:25.0662505Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"731b0b01-12bc-45ea-944f-c1a7abc6b8a4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/731b0b01-12bc-45ea-944f-c1a7abc6b8a4/ticks/636910724389480698","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d0b95bd-c1d0-4fb6-ab01-947ccee6204b","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f89b86c3-8411-4d61-93dd-3773deb5cc2e\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:58.9480698Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"8d959c4e-1da5-4512-b98e-7147d194fae6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/8d959c4e-1da5-4512-b98e-7147d194fae6/ticks/636910724379230816","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:57.9230816Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d5012d04-8db1-4881-a964-b37e001d6493","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d5012d04-8db1-4881-a964-b37e001d6493/ticks/636910724324301347","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4b9462ca-f47d-4d3d-a4ef-9b8ffefe63b4","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ce8cc230-fa1a-4fe9-9457-8299a6cecf99\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:53.3255249Z","submissionTimestamp":"2019-04-30T01:37:13.0712561Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b74a2c05-dcb3-41ee-9881-b33b867ddab1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/b74a2c05-dcb3-41ee-9881-b33b867ddab1/ticks/636921849971016198","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37604e96-874c-4d76-9fc9-64a982a3b400","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:37.1016198Z","submissionTimestamp":"2019-04-30T01:36:57.0738162Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2868825c-0314-4e6b-b31d-18f3153c3e55","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/2868825c-0314-4e6b-b31d-18f3153c3e55/ticks/636921849663374701","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a48c037-7f33-42c7-91aa-5661675ada10","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:06.3374701Z","submissionTimestamp":"2019-04-30T01:36:27.0702476Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"137bf4a8-8246-4206-81fd-9d573fc68b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/137bf4a8-8246-4206-81fd-9d573fc68b77/ticks/636921849552645354","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6b8e600c-d5b2-4ec5-bf55-1f9d0939618b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:35:55.2645354Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"aa684f08-ef84-4ad1-a660-6d9f158799eb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/aa684f08-ef84-4ad1-a660-6d9f158799eb/ticks/636921849552128853","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"286710cd-6e46-445b-86fb-3f12ae51d7df"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:55.2128853Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f7383f2f-8ad6-4337-a964-0e31c165da95","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/f7383f2f-8ad6-4337-a964-0e31c165da95/ticks/636921849551328862","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.1328862Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2be4faea-c309-4cef-838a-1bcfbefd8487","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/2be4faea-c309-4cef-838a-1bcfbefd8487/ticks/636921849550745306","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.0745306Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"bc35e9cd-c843-46a1-ba50-6925377639cd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/bc35e9cd-c843-46a1-ba50-6925377639cd/ticks/636921849540029260","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:54.002926Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"e14c9961-be1b-4e57-987c-1f604dea6177","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/e14c9961-be1b-4e57-987c-1f604dea6177/ticks/636921849537034496","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"42034cdf-9af2-47e1-803a-7c522dfaa918","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:53.7034496Z","submissionTimestamp":"2019-04-30T01:36:15.2351019Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"785c248f-0bd6-4fe3-97d9-1a837f6b4429","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/785c248f-0bd6-4fe3-97d9-1a837f6b4429/ticks/636921849532677739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"91b9d3e0-9bbf-441f-98aa-881097f43ebd","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9adabe86-86cf-4e5a-bda6-50913f74c439\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:53.2677739Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"c1344c8a-fb35-4022-a0b6-05780db3a298","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/c1344c8a-fb35-4022-a0b6-05780db3a298/ticks/636921849528171374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"07a962a4-f63f-4926-91c5-42a9a1696c84","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.8171374Z","submissionTimestamp":"2019-04-30T01:36:10.1676306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"113462da-d9de-4245-8f7f-125c71acbe2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/113462da-d9de-4245-8f7f-125c71acbe2e/ticks/636921849523577324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.3577324Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"d6483c29-0ded-498b-a3b4-75f8c24d94c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d6483c29-0ded-498b-a3b4-75f8c24d94c6/ticks/636921849470909117","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9aa41075-f677-4b70-8655-0e48bed605c7","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"cfed77b0-ae84-4ee3-9b4c-9b51f5b204c1\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.4301347Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"984c6e75-e61c-454b-aee2-7a97d2a37300","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/984c6e75-e61c-454b-aee2-7a97d2a37300/ticks/636910724322951306","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3f2cf520-7502-4905-bd2b-ee9ca227e37b","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"df464a2e-f471-4a8d-8556-caec586a4021\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1f434741-6ab0-40c2-ac1c-3e5fa40b917c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.2951306Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"6f56341a-14d6-4057-9948-a2aba86935ba","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/6f56341a-14d6-4057-9948-a2aba86935ba/ticks/636910724321601324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:52.1601324Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0716eb80-00d2-4046-9b62-a5b4e270c6ac","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/0716eb80-00d2-4046-9b62-a5b4e270c6ac/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"991568ca-2d73-473b-9969-91f642b7d6ca","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/991568ca-2d73-473b-9969-91f642b7d6ca/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"78f54ae4-dc9c-40ff-9da1-c3d7a43d898b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/78f54ae4-dc9c-40ff-9da1-c3d7a43d898b/ticks/636910724290323263","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:47.0909117Z","submissionTimestamp":"2019-04-30T01:36:07.0756504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"090aa188-01ce-4959-8aa5-a319b9ffa91d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/090aa188-01ce-4959-8aa5-a319b9ffa91d/ticks/636921849469858975","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1448d743-4e0b-40e1-af4e-e1e57699e80c","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"310d2f44-d4e2-412c-84f6-b0c7be6fd425\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"03c48476-450e-4e0f-b7a3-c61bff9afcff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:46.9858975Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f70a1c59-0a65-4e1d-ab9d-bea3a0564044","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/f70a1c59-0a65-4e1d-ab9d-bea3a0564044/ticks/636921849468859197","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:46.8859197Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"acb3d9f3-9f73-4807-93b2-3e6294aa3000","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/acb3d9f3-9f73-4807-93b2-3e6294aa3000/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ef92e5ef-d694-4347-b2ae-d8ca302bca0e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/ef92e5ef-d694-4347-b2ae-d8ca302bca0e/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:49.0323263Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"cead4c0a-14a2-42b1-a283-1e9cbb3fe613","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/cead4c0a-14a2-42b1-a283-1e9cbb3fe613/ticks/636910724246373309","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:44.6373309Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '74443' + - '85249' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:35:29 GMT + - Tue, 30 Apr 2019 01:37:50 GMT expires: - '-1' pragma: @@ -6275,90 +7115,106 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A35%3A38Z%20and%20correlationId%20eq%20%27117b68df-b6ad-468c-9937-ad0b34ba10c2%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A38%3A01Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"e129926f-e20a-4ce4-8ddd-194fc20b8977","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/e129926f-e20a-4ce4-8ddd-194fc20b8977/ticks/636910724828662754","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"53d9280a-a2d8-46c3-8d4a-29a1124395d0","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ce237cec-6d72-47c3-979c-4d3908cdba81","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/ce237cec-6d72-47c3-979c-4d3908cdba81/ticks/636921850607986397","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"930480a2-cd6c-4cf8-a7ab-33dcf113d23c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:40.7986397Z","submissionTimestamp":"2019-04-30T01:38:00.0707196Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"8f44d134-7792-47f0-9023-46334bfa2e47","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/8f44d134-7792-47f0-9023-46334bfa2e47/ticks/636921850451225155","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dc20a45-8be5-410e-abee-fc7ce7011f34","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:42.8662754Z","submissionTimestamp":"2019-04-17T04:35:09.0778502Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"7e7452b4-bf72-4ada-8c59-dd3088afb750","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/7e7452b4-bf72-4ada-8c59-dd3088afb750/ticks/636910724522064076","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37ff0c53-f123-40dc-a9ce-d6f6e1ea484f","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:25.1225155Z","submissionTimestamp":"2019-04-30T01:37:40.0865242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"055f57d2-a946-47bd-868e-da35ef75c053","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/055f57d2-a946-47bd-868e-da35ef75c053/ticks/636921850294498097","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eef7b453-7a1f-48e9-a1df-5394e77a419b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:12.2064076Z","submissionTimestamp":"2019-04-17T04:34:30.0744818Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0dfaf299-3e95-4646-88eb-aea2f8120c0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/0dfaf299-3e95-4646-88eb-aea2f8120c0b/ticks/636910724413673047","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b836b197-48ff-44ed-b3b7-82244feb421f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.3673047Z","submissionTimestamp":"2019-04-17T04:34:25.1835496Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d4494807-66d3-437d-99e2-16c04d578f00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/d4494807-66d3-437d-99e2-16c04d578f00/ticks/636910724412085680","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"dcd566e1-c371-4de5-8fda-67cb8d8b66e2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-17T04:34:01.208568Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"a535bdac-c9b4-430b-a826-3e47beea01d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/a535bdac-c9b4-430b-a826-3e47beea01d6/ticks/636910724411167745","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"10270dcb-4b5c-49f1-94ef-4684a20439fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:34:01.1167745Z","submissionTimestamp":"2019-04-17T04:34:29.1068221Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"35e4e407-3d44-4ba8-970a-dae775e79818","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/35e4e407-3d44-4ba8-970a-dae775e79818/ticks/636910724410367574","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0367574Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"2d93f38f-3333-40f9-9a7f-4441a474a089","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/2d93f38f-3333-40f9-9a7f-4441a474a089/ticks/636910724410335655","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0335655Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"acea365f-7592-49f4-8854-a9ef7147677b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/acea365f-7592-49f4-8854-a9ef7147677b/ticks/636910724397283349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.7283349Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"492e28e5-2339-4645-979d-9e96a7190fc8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/492e28e5-2339-4645-979d-9e96a7190fc8/ticks/636910724390716009","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"da1d0e33-aa27-4d40-92f8-c18bdd0795f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.0716009Z","submissionTimestamp":"2019-04-17T04:34:25.0662505Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"731b0b01-12bc-45ea-944f-c1a7abc6b8a4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/731b0b01-12bc-45ea-944f-c1a7abc6b8a4/ticks/636910724389480698","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d0b95bd-c1d0-4fb6-ab01-947ccee6204b","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f89b86c3-8411-4d61-93dd-3773deb5cc2e\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:58.9480698Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"8d959c4e-1da5-4512-b98e-7147d194fae6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/8d959c4e-1da5-4512-b98e-7147d194fae6/ticks/636910724379230816","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:57.9230816Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d5012d04-8db1-4881-a964-b37e001d6493","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d5012d04-8db1-4881-a964-b37e001d6493/ticks/636910724324301347","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4b9462ca-f47d-4d3d-a4ef-9b8ffefe63b4","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ce8cc230-fa1a-4fe9-9457-8299a6cecf99\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:09.4498097Z","submissionTimestamp":"2019-04-30T01:37:31.1072699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"879cdfc5-12ac-4da4-8325-c6c2faee5bee","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/879cdfc5-12ac-4da4-8325-c6c2faee5bee/ticks/636921850133255249","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"985a3e8f-6bfc-4eed-8c1f-2c4ff49f2117","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:53.3255249Z","submissionTimestamp":"2019-04-30T01:37:13.0712561Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b74a2c05-dcb3-41ee-9881-b33b867ddab1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/b74a2c05-dcb3-41ee-9881-b33b867ddab1/ticks/636921849971016198","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37604e96-874c-4d76-9fc9-64a982a3b400","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:37.1016198Z","submissionTimestamp":"2019-04-30T01:36:57.0738162Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2868825c-0314-4e6b-b31d-18f3153c3e55","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/2868825c-0314-4e6b-b31d-18f3153c3e55/ticks/636921849663374701","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a48c037-7f33-42c7-91aa-5661675ada10","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:06.3374701Z","submissionTimestamp":"2019-04-30T01:36:27.0702476Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"137bf4a8-8246-4206-81fd-9d573fc68b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/137bf4a8-8246-4206-81fd-9d573fc68b77/ticks/636921849552645354","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6b8e600c-d5b2-4ec5-bf55-1f9d0939618b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:35:55.2645354Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"aa684f08-ef84-4ad1-a660-6d9f158799eb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/aa684f08-ef84-4ad1-a660-6d9f158799eb/ticks/636921849552128853","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"286710cd-6e46-445b-86fb-3f12ae51d7df"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:55.2128853Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f7383f2f-8ad6-4337-a964-0e31c165da95","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/f7383f2f-8ad6-4337-a964-0e31c165da95/ticks/636921849551328862","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.1328862Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2be4faea-c309-4cef-838a-1bcfbefd8487","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/2be4faea-c309-4cef-838a-1bcfbefd8487/ticks/636921849550745306","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.0745306Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"bc35e9cd-c843-46a1-ba50-6925377639cd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/bc35e9cd-c843-46a1-ba50-6925377639cd/ticks/636921849540029260","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:54.002926Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"e14c9961-be1b-4e57-987c-1f604dea6177","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/e14c9961-be1b-4e57-987c-1f604dea6177/ticks/636921849537034496","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"42034cdf-9af2-47e1-803a-7c522dfaa918","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:53.7034496Z","submissionTimestamp":"2019-04-30T01:36:15.2351019Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"785c248f-0bd6-4fe3-97d9-1a837f6b4429","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/785c248f-0bd6-4fe3-97d9-1a837f6b4429/ticks/636921849532677739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"91b9d3e0-9bbf-441f-98aa-881097f43ebd","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9adabe86-86cf-4e5a-bda6-50913f74c439\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:53.2677739Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"c1344c8a-fb35-4022-a0b6-05780db3a298","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/c1344c8a-fb35-4022-a0b6-05780db3a298/ticks/636921849528171374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"07a962a4-f63f-4926-91c5-42a9a1696c84","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.8171374Z","submissionTimestamp":"2019-04-30T01:36:10.1676306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"113462da-d9de-4245-8f7f-125c71acbe2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/113462da-d9de-4245-8f7f-125c71acbe2e/ticks/636921849523577324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.3577324Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"d6483c29-0ded-498b-a3b4-75f8c24d94c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d6483c29-0ded-498b-a3b4-75f8c24d94c6/ticks/636921849470909117","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9aa41075-f677-4b70-8655-0e48bed605c7","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"cfed77b0-ae84-4ee3-9b4c-9b51f5b204c1\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.4301347Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"984c6e75-e61c-454b-aee2-7a97d2a37300","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/984c6e75-e61c-454b-aee2-7a97d2a37300/ticks/636910724322951306","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3f2cf520-7502-4905-bd2b-ee9ca227e37b","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"df464a2e-f471-4a8d-8556-caec586a4021\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1f434741-6ab0-40c2-ac1c-3e5fa40b917c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.2951306Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"6f56341a-14d6-4057-9948-a2aba86935ba","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/6f56341a-14d6-4057-9948-a2aba86935ba/ticks/636910724321601324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:52.1601324Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0716eb80-00d2-4046-9b62-a5b4e270c6ac","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/0716eb80-00d2-4046-9b62-a5b4e270c6ac/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"991568ca-2d73-473b-9969-91f642b7d6ca","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/991568ca-2d73-473b-9969-91f642b7d6ca/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"78f54ae4-dc9c-40ff-9da1-c3d7a43d898b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/78f54ae4-dc9c-40ff-9da1-c3d7a43d898b/ticks/636910724290323263","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:47.0909117Z","submissionTimestamp":"2019-04-30T01:36:07.0756504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"090aa188-01ce-4959-8aa5-a319b9ffa91d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/090aa188-01ce-4959-8aa5-a319b9ffa91d/ticks/636921849469858975","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1448d743-4e0b-40e1-af4e-e1e57699e80c","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"310d2f44-d4e2-412c-84f6-b0c7be6fd425\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"03c48476-450e-4e0f-b7a3-c61bff9afcff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:46.9858975Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f70a1c59-0a65-4e1d-ab9d-bea3a0564044","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/f70a1c59-0a65-4e1d-ab9d-bea3a0564044/ticks/636921849468859197","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:46.8859197Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"acb3d9f3-9f73-4807-93b2-3e6294aa3000","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/acb3d9f3-9f73-4807-93b2-3e6294aa3000/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ef92e5ef-d694-4347-b2ae-d8ca302bca0e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/ef92e5ef-d694-4347-b2ae-d8ca302bca0e/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:49.0323263Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"cead4c0a-14a2-42b1-a283-1e9cbb3fe613","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/cead4c0a-14a2-42b1-a283-1e9cbb3fe613/ticks/636910724246373309","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:44.6373309Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '74443' + - '88852' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:35:39 GMT + - Tue, 30 Apr 2019 01:38:01 GMT expires: - '-1' pragma: @@ -6392,101 +7248,110 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T12%3A35%3A48Z%20and%20correlationId%20eq%20%27117b68df-b6ad-468c-9937-ad0b34ba10c2%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"8c493609-dfdd-431a-8cc8-97a8d9123d27","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/8c493609-dfdd-431a-8cc8-97a8d9123d27/ticks/636910725247071637","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"4792f5ea-230c-43a9-9ea9-ba0b762f608b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:35:24.7071637Z","submissionTimestamp":"2019-04-17T04:35:41.0918366Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"11d0b074-dc3f-463c-bcc2-9e267acbdcc3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/11d0b074-dc3f-463c-bcc2-9e267acbdcc3/ticks/636910725246714953","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"69021d56-c7c0-425c-a534-ecab978d71de","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:35:24.6714953Z","submissionTimestamp":"2019-04-17T04:35:42.1267792Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"6d8631cc-b7ed-44f6-8f6d-8b8f9f167bfa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/6d8631cc-b7ed-44f6-8f6d-8b8f9f167bfa/ticks/636910724992242704","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"40831007-b94f-48c3-a511-0eef250c6bdf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A38%3A12Z%20and%20correlationId%20eq%20%27f85012d6-1a78-4a89-b831-42be7f02335b%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"6e4e6e61-3789-4472-a2ab-7b9d05a9e499","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/6e4e6e61-3789-4472-a2ab-7b9d05a9e499/ticks/636921850785854591","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"70b8eca8-6d70-4678-a799-d9a698f383be","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:58.5854591Z","submissionTimestamp":"2019-04-30T01:38:10.0646996Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ce237cec-6d72-47c3-979c-4d3908cdba81","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/ce237cec-6d72-47c3-979c-4d3908cdba81/ticks/636921850607986397","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"930480a2-cd6c-4cf8-a7ab-33dcf113d23c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:59.2242704Z","submissionTimestamp":"2019-04-17T04:35:19.0725619Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"e129926f-e20a-4ce4-8ddd-194fc20b8977","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/e129926f-e20a-4ce4-8ddd-194fc20b8977/ticks/636910724828662754","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"53d9280a-a2d8-46c3-8d4a-29a1124395d0","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:40.7986397Z","submissionTimestamp":"2019-04-30T01:38:00.0707196Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"8f44d134-7792-47f0-9023-46334bfa2e47","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/8f44d134-7792-47f0-9023-46334bfa2e47/ticks/636921850451225155","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dc20a45-8be5-410e-abee-fc7ce7011f34","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:42.8662754Z","submissionTimestamp":"2019-04-17T04:35:09.0778502Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"7e7452b4-bf72-4ada-8c59-dd3088afb750","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/7e7452b4-bf72-4ada-8c59-dd3088afb750/ticks/636910724522064076","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37ff0c53-f123-40dc-a9ce-d6f6e1ea484f","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:25.1225155Z","submissionTimestamp":"2019-04-30T01:37:40.0865242Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"055f57d2-a946-47bd-868e-da35ef75c053","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/055f57d2-a946-47bd-868e-da35ef75c053/ticks/636921850294498097","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eef7b453-7a1f-48e9-a1df-5394e77a419b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:12.2064076Z","submissionTimestamp":"2019-04-17T04:34:30.0744818Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0dfaf299-3e95-4646-88eb-aea2f8120c0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/0dfaf299-3e95-4646-88eb-aea2f8120c0b/ticks/636910724413673047","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b836b197-48ff-44ed-b3b7-82244feb421f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.3673047Z","submissionTimestamp":"2019-04-17T04:34:25.1835496Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d4494807-66d3-437d-99e2-16c04d578f00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/d4494807-66d3-437d-99e2-16c04d578f00/ticks/636910724412085680","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"dcd566e1-c371-4de5-8fda-67cb8d8b66e2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-17T04:34:01.208568Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"a535bdac-c9b4-430b-a826-3e47beea01d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/a535bdac-c9b4-430b-a826-3e47beea01d6/ticks/636910724411167745","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"10270dcb-4b5c-49f1-94ef-4684a20439fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:34:01.1167745Z","submissionTimestamp":"2019-04-17T04:34:29.1068221Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"35e4e407-3d44-4ba8-970a-dae775e79818","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/35e4e407-3d44-4ba8-970a-dae775e79818/ticks/636910724410367574","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0367574Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555473700","nbf":"1555473700","exp":"1555502800","aio":"42ZgYDjpOfdSk8/dMwu0j7xJZdL6BgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"5VnrLWlZbkSyrH3HlYO9AA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"2d93f38f-3333-40f9-9a7f-4441a474a089","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b13a3900-9b3c-4615-9ff6-32e2e82b5614","clientIpAddress":"52.143.192.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda/events/2d93f38f-3333-40f9-9a7f-4441a474a089/ticks/636910724410335655","level":"Informational","resourceGroupName":"CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGNNA4BPENGJ2GHVDJPOK63XDE7XBHIO4K22MNSRCOSIXMJJ2K56PJHWY7AJ5TQODLI/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"ca24cf4d-88b4-4463-ae68-63a0ba9746c2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:34:01.0335655Z","submissionTimestamp":"2019-04-17T04:34:27.0706946Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"acea365f-7592-49f4-8854-a9ef7147677b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76735acc-1b07-49a0-b486-6097a2869df4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/acea365f-7592-49f4-8854-a9ef7147677b/ticks/636910724397283349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cb972dd1-e590-4533-a525-69d618d44084","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.7283349Z","submissionTimestamp":"2019-04-17T04:34:29.1058219Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"492e28e5-2339-4645-979d-9e96a7190fc8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/492e28e5-2339-4645-979d-9e96a7190fc8/ticks/636910724390716009","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"da1d0e33-aa27-4d40-92f8-c18bdd0795f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:59.0716009Z","submissionTimestamp":"2019-04-17T04:34:25.0662505Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"731b0b01-12bc-45ea-944f-c1a7abc6b8a4","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/731b0b01-12bc-45ea-944f-c1a7abc6b8a4/ticks/636910724389480698","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d0b95bd-c1d0-4fb6-ab01-947ccee6204b","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f89b86c3-8411-4d61-93dd-3773deb5cc2e\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"e71a796c-b0f0-4c78-aacc-e210337956a6\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:58.9480698Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"8d959c4e-1da5-4512-b98e-7147d194fae6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8a8d5e88-7285-457a-9385-76d73f5f3c0d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/8d959c4e-1da5-4512-b98e-7147d194fae6/ticks/636910724379230816","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"38ce5525-14ab-431a-ae14-2f0bcc28593f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:57.9230816Z","submissionTimestamp":"2019-04-17T04:34:19.0900705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"d5012d04-8db1-4881-a964-b37e001d6493","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d5012d04-8db1-4881-a964-b37e001d6493/ticks/636910724324301347","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4b9462ca-f47d-4d3d-a4ef-9b8ffefe63b4","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ce8cc230-fa1a-4fe9-9457-8299a6cecf99\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6259aaaa-cb47-43c7-8b31-25f20e3090ea\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:09.4498097Z","submissionTimestamp":"2019-04-30T01:37:31.1072699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"879cdfc5-12ac-4da4-8325-c6c2faee5bee","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/879cdfc5-12ac-4da4-8325-c6c2faee5bee/ticks/636921850133255249","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"985a3e8f-6bfc-4eed-8c1f-2c4ff49f2117","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:53.3255249Z","submissionTimestamp":"2019-04-30T01:37:13.0712561Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b74a2c05-dcb3-41ee-9881-b33b867ddab1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/b74a2c05-dcb3-41ee-9881-b33b867ddab1/ticks/636921849971016198","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"37604e96-874c-4d76-9fc9-64a982a3b400","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:37.1016198Z","submissionTimestamp":"2019-04-30T01:36:57.0738162Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2868825c-0314-4e6b-b31d-18f3153c3e55","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/2868825c-0314-4e6b-b31d-18f3153c3e55/ticks/636921849663374701","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a48c037-7f33-42c7-91aa-5661675ada10","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:06.3374701Z","submissionTimestamp":"2019-04-30T01:36:27.0702476Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"137bf4a8-8246-4206-81fd-9d573fc68b77","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/137bf4a8-8246-4206-81fd-9d573fc68b77/ticks/636921849552645354","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6b8e600c-d5b2-4ec5-bf55-1f9d0939618b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:35:55.2645354Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"aa684f08-ef84-4ad1-a660-6d9f158799eb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/aa684f08-ef84-4ad1-a660-6d9f158799eb/ticks/636921849552128853","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"286710cd-6e46-445b-86fb-3f12ae51d7df"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:55.2128853Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f7383f2f-8ad6-4337-a964-0e31c165da95","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/f7383f2f-8ad6-4337-a964-0e31c165da95/ticks/636921849551328862","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.1328862Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569178","nbf":"1556569178","exp":"1556598278","aio":"42ZgYHj9quuit20Pn5HVRW9/Jk4zAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"L6wco4ZD5UqrloFGqvPLAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"2be4faea-c309-4cef-838a-1bcfbefd8487","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4e3abfe9-e29f-4ba7-afc1-aa82c759bc9b","clientIpAddress":"52.136.29.2","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb/events/2be4faea-c309-4cef-838a-1bcfbefd8487/ticks/636921849550745306","level":"Informational","resourceGroupName":"CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVFFS3FX2BB3VWZGA3BC4ZBTEPDWTV3DCWGNUSUXMPLKZH5VR5JQCB3425VRU3TVBZ/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"6d415ea5-69cc-4c74-90e2-4643d8838fa4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:55.0745306Z","submissionTimestamp":"2019-04-30T01:36:18.0994721Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"bc35e9cd-c843-46a1-ba50-6925377639cd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"51aec5c5-ad67-4f5a-a1b8-e869a16c55c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage/events/bc35e9cd-c843-46a1-ba50-6925377639cd/ticks/636921849540029260","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ee8ad2ac-b3cc-43bf-b3fc-1c43f32b4f61","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:54.002926Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"e14c9961-be1b-4e57-987c-1f604dea6177","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/e14c9961-be1b-4e57-987c-1f604dea6177/ticks/636921849537034496","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"42034cdf-9af2-47e1-803a-7c522dfaa918","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:53.7034496Z","submissionTimestamp":"2019-04-30T01:36:15.2351019Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"785c248f-0bd6-4fe3-97d9-1a837f6b4429","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/785c248f-0bd6-4fe3-97d9-1a837f6b4429/ticks/636921849532677739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"91b9d3e0-9bbf-441f-98aa-881097f43ebd","responseBody":"{\"name\":\"vmFromImageVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9adabe86-86cf-4e5a-bda6-50913f74c439\",\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\"etag\":\"W/\\\"d93b7e26-8c8e-48e5-ac34-83b23cd125da\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:53.2677739Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"c1344c8a-fb35-4022-a0b6-05780db3a298","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/c1344c8a-fb35-4022-a0b6-05780db3a298/ticks/636921849528171374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"07a962a4-f63f-4926-91c5-42a9a1696c84","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.8171374Z","submissionTimestamp":"2019-04-30T01:36:10.1676306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"113462da-d9de-4245-8f7f-125c71acbe2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14821535-f0f1-4eb8-9408-6b9a2cc2f4cd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/events/113462da-d9de-4245-8f7f-125c71acbe2e/ticks/636921849523577324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"af10331d-5ae2-4046-83cb-0b3a981638ac","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvmFromImage\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:52.3577324Z","submissionTimestamp":"2019-04-30T01:36:17.0665713Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"d6483c29-0ded-498b-a3b4-75f8c24d94c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/d6483c29-0ded-498b-a3b4-75f8c24d94c6/ticks/636921849470909117","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"9aa41075-f677-4b70-8655-0e48bed605c7","responseBody":"{\"name\":\"vmFromImageNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"cfed77b0-ae84-4ee3-9b4c-9b51f5b204c1\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"16b2a2b5-5656-40cb-8cf6-26a9d09dbad9\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.4301347Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"984c6e75-e61c-454b-aee2-7a97d2a37300","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/984c6e75-e61c-454b-aee2-7a97d2a37300/ticks/636910724322951306","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3f2cf520-7502-4905-bd2b-ee9ca227e37b","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"df464a2e-f471-4a8d-8556-caec586a4021\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1f434741-6ab0-40c2-ac1c-3e5fa40b917c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:52.2951306Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"6f56341a-14d6-4057-9948-a2aba86935ba","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/6f56341a-14d6-4057-9948-a2aba86935ba/ticks/636910724321601324","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:52.1601324Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"0716eb80-00d2-4046-9b62-a5b4e270c6ac","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14981dba-512c-4f68-bb7a-920351631b3f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/0716eb80-00d2-4046-9b62-a5b4e270c6ac/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"289e7c0e-fcb0-49dd-ae94-53ae58147319","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"991568ca-2d73-473b-9969-91f642b7d6ca","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dd2ac43b-5e04-4c09-9acc-bc8ba93c676c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/991568ca-2d73-473b-9969-91f642b7d6ca/ticks/636910724306089979","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"34066f25-8ce5-4f6e-a6d4-ae9ea64b58e6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:50.6089979Z","submissionTimestamp":"2019-04-17T04:34:19.0890698Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"78f54ae4-dc9c-40ff-9da1-c3d7a43d898b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/78f54ae4-dc9c-40ff-9da1-c3d7a43d898b/ticks/636910724290323263","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:47.0909117Z","submissionTimestamp":"2019-04-30T01:36:07.0756504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"090aa188-01ce-4959-8aa5-a319b9ffa91d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/090aa188-01ce-4959-8aa5-a319b9ffa91d/ticks/636921849469858975","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1448d743-4e0b-40e1-af4e-e1e57699e80c","responseBody":"{\"name\":\"vmFromImagePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\"etag\":\"W/\\\"310d2f44-d4e2-412c-84f6-b0c7be6fd425\\\"\",\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"03c48476-450e-4e0f-b7a3-c61bff9afcff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:46.9858975Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"f70a1c59-0a65-4e1d-ab9d-bea3a0564044","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/f70a1c59-0a65-4e1d-ab9d-bea3a0564044/ticks/636921849468859197","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:46.8859197Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"acb3d9f3-9f73-4807-93b2-3e6294aa3000","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8e95a913-a9f8-42f1-a71c-19408139c3c9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP/events/acb3d9f3-9f73-4807-93b2-3e6294aa3000/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"78f57895-067e-4000-b6e4-6e4bb305b8e7","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"ef92e5ef-d694-4347-b2ae-d8ca302bca0e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d6dc41a7-8d82-4cac-9d17-e0683027ac4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG/events/ef92e5ef-d694-4347-b2ae-d8ca302bca0e/ticks/636921849457303711","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"17e2b88a-1e03-4ecd-8fd3-07e9af8358f8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"eastus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:45.7303711Z","submissionTimestamp":"2019-04-30T01:36:07.0746492Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"b35edf90-726c-4a08-9853-93a67e247abb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/b35edf90-726c-4a08-9853-93a67e247abb/ticks/636921849407849551","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-17T04:33:49.0323263Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555474639","nbf":"1555474639","exp":"1555478539","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAArHyBGno6Hlla6rtSVGs0fRChZuQo0DGC7AruN+xK2PRotp358XY7ZUYQQ//4XxU4l89Cyt084JRUCFuNCzvTshePUD/6KBcZ221jKz3JbMs=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"qZ19TedmhEKw2EaPBQsPAA","ver":"1.0"},"correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","description":"","eventDataId":"cead4c0a-14a2-42b1-a283-1e9cbb3fe613","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9af92c2-60c9-11e9-8022-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob/events/cead4c0a-14a2-42b1-a283-1e9cbb3fe613/ticks/636910724246373309","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-17T04:33:44.6373309Z","submissionTimestamp":"2019-04-17T04:34:00.1008582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:40.7849551Z","submissionTimestamp":"2019-04-30T01:36:02.1298963Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAANFPbVWEr+khXLYAH6OHzCc5ZFdaAeAkgB6/InxlKeAiLmHZUTe5y002KOsAhFD4Ty6yWVSazambosgG17CSqxX4kT3YmepAsAtrH6vpq0bk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"CycarQOFy0GKszp7iS8CAA","ver":"1.0"},"correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","description":"","eventDataId":"4e5db9d8-58d1-486d-b5ec-6b953c9f29ad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3f2a69ee-6ae8-11e9-a73b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna/events/4e5db9d8-58d1-486d-b5ec-6b953c9f29ad/ticks/636921849358599154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f85012d6-1a78-4a89-b831-42be7f02335b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:35.8599154Z","submissionTimestamp":"2019-04-30T01:35:52.091141Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '85134' + - '92455' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:35:50 GMT + - Tue, 30 Apr 2019 01:38:12 GMT expires: - '-1' pragma: @@ -6518,10 +7383,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461312585726030?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450187476895200?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -6533,7 +7398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:35:53 GMT + - Tue, 30 Apr 2019 01:38:13 GMT expires: - '-1' pragma: @@ -6561,22 +7426,22 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","name":"vm_deploy_7IH9rQwzeVaqBJ1qroTSqUKlH8j4LSob","properties":{"templateHash":"14090799506518647144","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-17T04:35:24.4791564Z","duration":"PT1M37.5741327S","correlationId":"117b68df-b6ad-468c-9937-ad0b34ba10c2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","name":"vm_deploy_AhCWA7vQpgOKbwMk1ZV9ZX7ddZaJ3nna","properties":{"templateHash":"3387274184800672282","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:38:06.4980279Z","duration":"PT2M28.7099261S","correlationId":"f85012d6-1a78-4a89-b831-42be7f02335b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3343' + - '3342' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:35:54 GMT + - Tue, 30 Apr 2019 01:38:13 GMT expires: - '-1' pragma: @@ -6604,23 +7469,23 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"85b5d325-da8f-4101-afff-a77cf79c474f\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"ad498bca-d8cb-4698-9592-97e2aa475926\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery1/images/image1\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda\"\ + \ \"name\": \"vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb\"\ ,\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/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmFromImage\"\ ,\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\"\ @@ -6633,36 +7498,35 @@ interactions: : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"\ networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\"\ }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ - : {\r\n \"computerName\": \"vmFromImage\",\r\n \"osName\": \"ubuntu\"\ - ,\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"\ - vmAgentVersion\": \"2.2.38\",\r\n \"statuses\": [\r\n {\r\n\ - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"\ - level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ - \ \"message\": \"Guest Agent is running\",\r\n \"time\": \"\ - 2019-04-17T04:35:53+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\"\ - : []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\"\ - : \"vmFromImage_OsDisk_1_accef6a2433744b7ae6bdfbe6565adda\",\r\n \ - \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ - ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\ - : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-17T04:34:02.2866935+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\": \"2019-04-17T04:35:21.9919459+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 \"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\": \"2019-04-30T01:38:15+00:00\"\ + \r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n \ + \ {\r\n \"name\": \"vmFromImage_OsDisk_1_4dac368ad126410da91ec8a1d2ae32eb\"\ + ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ + : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ + \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ + \ \"time\": \"2019-04-30T01:35:56.244881+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\": \"2019-04-30T01:38:03.2444825+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\": \"eastus2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage\"\ ,\r\n \"name\": \"vmFromImage\"\r\n}" headers: cache-control: - no-cache content-length: - - '3832' + - '3737' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:35:55 GMT + - Tue, 30 Apr 2019 01:38:15 GMT expires: - '-1' pragma: @@ -6679,7 +7543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31980 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31976 status: code: 200 message: OK @@ -6697,8 +7561,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -6706,12 +7570,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vmFromImageVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\"\ - ,\r\n \"etag\": \"W/\\\"96327899-f072-4ec9-ad17-69c6f4025774\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"557a8972-c369-4690-b9d2-28753368a430\\\"\",\r\n \ \ \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f89b86c3-8411-4d61-93dd-3773deb5cc2e\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9adabe86-86cf-4e5a-bda6-50913f74c439\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvmFromImage\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\"\ - ,\r\n \"etag\": \"W/\\\"96327899-f072-4ec9-ad17-69c6f4025774\\\"\"\ + ,\r\n \"etag\": \"W/\\\"557a8972-c369-4690-b9d2-28753368a430\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\"\ @@ -6721,8 +7585,8 @@ interactions: \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\": \"kwv2m0i2fvjureeu3qtigi1gne.cx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-0F-9E-E9\",\r\n \"enableAcceleratedNetworking\"\ + internalDomainNameSuffix\": \"y5n554yki3cu1f4xxotwpsua1g.cx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-02-1C-8B\",\r\n \"enableAcceleratedNetworking\"\ : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"\ \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ @@ -6737,9 +7601,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:35:56 GMT + - Tue, 30 Apr 2019 01:38:15 GMT etag: - - W/"96327899-f072-4ec9-ad17-69c6f4025774" + - W/"557a8972-c369-4690-b9d2-28753368a430" expires: - '-1' pragma: @@ -6772,8 +7636,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --generate-ssh-keys User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -6781,10 +7645,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vmFromImagePublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\"\ - ,\r\n \"etag\": \"W/\\\"2eeb1fa5-30b3-4fdb-af55-4d04cdeaaa93\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"3f54e50c-48d0-4c52-8c9f-b514a27382a7\\\"\",\r\n \ \ \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1f434741-6ab0-40c2-ac1c-3e5fa40b917c\"\ - ,\r\n \"ipAddress\": \"40.70.23.227\",\r\n \"publicIPAddressVersion\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03c48476-450e-4e0f-b7a3-c61bff9afcff\"\ + ,\r\n \"ipAddress\": \"40.70.200.231\",\r\n \"publicIPAddressVersion\"\ : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\"\ : 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\"\ @@ -6795,13 +7659,13 @@ interactions: cache-control: - no-cache content-length: - - '1054' + - '1055' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:35:57 GMT + - Tue, 30 Apr 2019 01:38:15 GMT etag: - - W/"2eeb1fa5-30b3-4fdb-af55-4d04cdeaaa93" + - W/"3f54e50c-48d0-4c52-8c9f-b514a27382a7" expires: - '-1' pragma: @@ -6836,8 +7700,8 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: DELETE @@ -6847,17 +7711,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b149f3fb-2ccd-4f0c-bbb2-81976b2902b3?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/16250347-153e-4351-bbec-f7ed39f9f82d?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 17 Apr 2019 04:35:59 GMT + - Tue, 30 Apr 2019 01:38:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b149f3fb-2ccd-4f0c-bbb2-81976b2902b3?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/16250347-153e-4351-bbec-f7ed39f9f82d?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -6886,14 +7750,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b149f3fb-2ccd-4f0c-bbb2-81976b2902b3?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/16250347-153e-4351-bbec-f7ed39f9f82d?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:35:59.5087683+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"b149f3fb-2ccd-4f0c-bbb2-81976b2902b3\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:38:17.6038567+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16250347-153e-4351-bbec-f7ed39f9f82d\"\ \r\n}" headers: cache-control: @@ -6903,7 +7767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:36:29 GMT + - Tue, 30 Apr 2019 01:38:48 GMT expires: - '-1' pragma: @@ -6936,14 +7800,14 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b149f3fb-2ccd-4f0c-bbb2-81976b2902b3?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/16250347-153e-4351-bbec-f7ed39f9f82d?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:35:59.5087683+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"b149f3fb-2ccd-4f0c-bbb2-81976b2902b3\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:38:17.6038567+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16250347-153e-4351-bbec-f7ed39f9f82d\"\ \r\n}" headers: cache-control: @@ -6953,7 +7817,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:37:00 GMT + - Tue, 30 Apr 2019 01:39:18 GMT expires: - '-1' pragma: @@ -6986,15 +7850,15 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition --gallery-image-version User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b149f3fb-2ccd-4f0c-bbb2-81976b2902b3?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/16250347-153e-4351-bbec-f7ed39f9f82d?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:35:59.5087683+00:00\",\r\n \"\ - endTime\": \"2019-04-17T04:37:15.5268216+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"b149f3fb-2ccd-4f0c-bbb2-81976b2902b3\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:38:17.6038567+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:39:33.5257329+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"16250347-153e-4351-bbec-f7ed39f9f82d\"\r\n}" headers: cache-control: - no-cache @@ -7003,7 +7867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:37:30 GMT + - Tue, 30 Apr 2019 01:39:48 GMT expires: - '-1' pragma: @@ -7038,8 +7902,8 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: DELETE @@ -7049,17 +7913,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/80eb66be-d7d3-4476-85ab-6bc3a230d8d6?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a21b3e6e-5a14-4699-88e2-befdfc1f955a?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 17 Apr 2019 04:38:32 GMT + - Tue, 30 Apr 2019 01:40:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/80eb66be-d7d3-4476-85ab-6bc3a230d8d6?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a21b3e6e-5a14-4699-88e2-befdfc1f955a?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -7088,24 +7952,24 @@ interactions: ParameterSetName: - -g --gallery-name --gallery-image-definition User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/80eb66be-d7d3-4476-85ab-6bc3a230d8d6?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a21b3e6e-5a14-4699-88e2-befdfc1f955a?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:38:32.9199119+00:00\",\r\n \"\ - endTime\": \"2019-04-17T04:38:34.1230839+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"80eb66be-d7d3-4476-85ab-6bc3a230d8d6\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:40:50.931989+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:40:52.1038582+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"a21b3e6e-5a14-4699-88e2-befdfc1f955a\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:39:03 GMT + - Tue, 30 Apr 2019 01:41:21 GMT expires: - '-1' pragma: @@ -7140,8 +8004,8 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: DELETE @@ -7151,17 +8015,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a3c81deb-33b1-47a4-ae2b-70e1c3eec7c7?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5811a1e1-5656-4f6e-9388-23735d427299?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 17 Apr 2019 04:39:05 GMT + - Tue, 30 Apr 2019 01:41:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a3c81deb-33b1-47a4-ae2b-70e1c3eec7c7?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5811a1e1-5656-4f6e-9388-23735d427299?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -7172,7 +8036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -7190,15 +8054,15 @@ interactions: ParameterSetName: - -g --gallery-name User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a3c81deb-33b1-47a4-ae2b-70e1c3eec7c7?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5811a1e1-5656-4f6e-9388-23735d427299?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-17T04:39:05.3584539+00:00\",\r\n \"\ - endTime\": \"2019-04-17T04:39:07.2491472+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"a3c81deb-33b1-47a4-ae2b-70e1c3eec7c7\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:41:23.2444802+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:41:24.9163571+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"5811a1e1-5656-4f6e-9388-23735d427299\"\r\n}" headers: cache-control: - no-cache @@ -7207,7 +8071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 17 Apr 2019 04:39:35 GMT + - Tue, 30 Apr 2019 01:41:55 GMT expires: - '-1' pragma: @@ -7242,8 +8106,8 @@ interactions: ParameterSetName: - --name --yes --no-wait User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: DELETE @@ -7257,11 +8121,11 @@ interactions: content-length: - '0' date: - - Wed, 17 Apr 2019 04:39:39 GMT + - Tue, 30 Apr 2019 01:41:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdOTkE0QlBFTkdKMkdIVkRKUE9LNjNYREU3WEJISU80SzIyTXw0NTE1MjA0OUMzMTA0M0EwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdWRkZTM0ZYMkJCM1ZXWkdBM0JDNFpCVEVQRFdUVjNEQ1dHTnwwRUZFREVGODc4REU4MDA0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2018-05-01 pragma: - no-cache strict-transport-security: diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_with_related_resources.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_with_related_resources.yaml new file mode 100644 index 00000000000..2d41ad32af3 --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_with_related_resources.yaml @@ -0,0 +1,4526 @@ +interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-04-30T01:32:59Z"}}' + 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.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001","name":"cli_test_ppg_resources_000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:32:59Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:02 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: + - ppg create + Connection: + - keep-alive + ParameterSetName: + - -n -t -g + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001","name":"cli_test_ppg_resources_000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:32:59Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:03 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: '{"location": "westus", "tags": {}, "properties": {"proximityPlacementGroupType": + "Standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ppg create + Connection: + - keep-alive + Content-Length: + - '93' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -t -g + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"\ + Standard\"\r\n },\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\"\ + ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\ + ,\r\n \"name\": \"my_ppg_1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '412' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:03 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-resource: + - Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;499 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001","name":"cli_test_ppg_resources_000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:32:59Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:04 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.21.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.5\",\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\":\"9\",\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-RAW\",\n \"version\":\"latest\"\n \ + \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ + \ \"offer\":\"SLES\",\n \"sku\":\"15\",\n \"\ + version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ + \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\",\n\ + \ \"sku\":\"18.04-LTS\",\n \"version\":\"latest\"\n\ + \ }\n },\n\n \"Windows\":{\n \"Win2019Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2019-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\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: + - '2433' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:05 GMT + etag: + - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' + expires: + - Tue, 30 Apr 2019 01:38:05 GMT + source-age: + - '21' + 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: + - 66976364d25f0813442eafba86b6bbe52027b0e9 + x-frame-options: + - deny + x-geo-block-list: + - '' + x-github-request-id: + - EA26:4FFE:C8F87:E4280:5CC7A5BB + x-served-by: + - cache-pao17436-PAO + x-timer: + - S1556587985.290225,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: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/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: + - Tue, 30 Apr 2019 01:33:05 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: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"zoneMappings":[{"location":"East + US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central + US EUAP","zones":["1","2"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"East US","zones":["1","2","3"]},{"location":"UK + South","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Australia + East","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, + SystemAssignedResourceIdentity"},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"zoneMappings":[{"location":"East + US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central + US EUAP","zones":["1","2"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"East US","zones":["1","2","3"]},{"location":"UK + South","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Australia + East","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, + SystemAssignedResourceIdentity"},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations","locations":[],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"sharedVMImages/versions","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/artifactPublishers","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-03-01","2018-06-01","2017-10-15-preview"]},{"resourceType":"galleries","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-03-01","2018-06-01"],"capabilities":"None"},{"resourceType":"galleries/images","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-03-01","2018-06-01"],"capabilities":"None"},{"resourceType":"galleries/images/versions","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-03-01","2018-06-01"],"capabilities":"None"},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"East + US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central + US EUAP","zones":["1","2"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"East US","zones":["1","2","3"]},{"location":"UK + South","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Australia + East","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove"},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"]},{"resourceType":"proximityPlacementGroups","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"capabilities":"None"}],"registrationState":"Registered"}' + headers: + cache-control: + - no-cache + content-length: + - '27482' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:05 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: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"\ + Standard\",\r\n \"virtualMachines\": [],\r\n \"virtualMachineScaleSets\"\ + : [],\r\n \"availabilitySets\": []\r\n },\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\"\ + ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\ + ,\r\n \"name\": \"my_ppg_1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '505' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:05 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;3994,Microsoft.Compute/LowCostGet30Min;31978 + 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": + [{"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_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}}, + {"apiVersion": "2019-03-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_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]}, + "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": + "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": + {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": + "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername": "tosin", "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/tosin/.ssh/authorized_keys"}]}}}, "proximityPlacementGroup": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1"}}}], + "outputs": {}}, "parameters": {}, "mode": "Incremental"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Length: + - '4257' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","name":"vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","properties":{"templateHash":"1032368030322024711","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:33:09.6637823Z","duration":"PT1.0924025S","correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","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_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/operationStatuses/08586450188969062456?api-version=2018-05-01 + cache-control: + - no-cache + content-length: + - '2701' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:09 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 + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A33%3A17Z%20and%20correlationId%20eq%20%27fb9c1951-0224-4a4e-a21b-cb5894a50379%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A33%3A27Z%20and%20correlationId%20eq%20%27fb9c1951-0224-4a4e-a21b-cb5894a50379%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A33%3A37Z%20and%20correlationId%20eq%20%27fb9c1951-0224-4a4e-a21b-cb5894a50379%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6/ticks/636921847944659033","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a843135f-4ff7-42ad-b055-1b0cfdd343f9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"4d541dfe-58b5-411d-9f76-6a2c5cdb0ae4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b22d962-de45-46c6-9c63-97eefd031285\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.4659033Z","submissionTimestamp":"2019-04-30T01:33:34.1323739Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"5c8c7a78-a7e8-4717-a1f5-316800184d0d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/5c8c7a78-a7e8-4717-a1f5-316800184d0d/ticks/636921847943259231","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"857a0d40-a395-4707-b497-b8fb66b4dc7d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"41d28ee4-32c8-4dd6-86d9-22b753055106\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.3259231Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"75897743-a04e-4233-9740-e002e42de9d1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/75897743-a04e-4233-9740-e002e42de9d1/ticks/636921847942559053","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.2559053Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"6dbaa02e-441f-4a9f-ac03-ef45e5fad776","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6dbaa02e-441f-4a9f-ac03-ef45e5fad776/ticks/636921847941155985","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.1155985Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4c1a76c1-a86d-4043-8d85-98704735c6de","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/4c1a76c1-a86d-4043-8d85-98704735c6de/ticks/636921847939756255","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f472f507-3ff1-4cc2-9b32-f54e4a90ffd3","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1008963a-959e-420b-a59c-309206961da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:13.9756255Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"bbd27670-5685-4277-909a-566d426fad9d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/bbd27670-5685-4277-909a-566d426fad9d/ticks/636921847914206366","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.4206366Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"3f16164e-92fb-47d8-9d8d-a98a16a276cc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3f16164e-92fb-47d8-9d8d-a98a16a276cc/ticks/636921847911956470","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.195647Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"cfc3b5ea-3931-42d9-9b62-0d414e0fba90","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/cfc3b5ea-3931-42d9-9b62-0d414e0fba90/ticks/636921847911506027","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.1506027Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4070aa40-0ecf-45f9-92b2-585ce3890f6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/4070aa40-0ecf-45f9-92b2-585ce3890f6a/ticks/636921847866594064","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:06.6594064Z","submissionTimestamp":"2019-04-30T01:33:28.0904387Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '41205' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450188969062456?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: + - Tue, 30 Apr 2019 01:33:39 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 + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A33%3A48Z%20and%20correlationId%20eq%20%27fb9c1951-0224-4a4e-a21b-cb5894a50379%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"be245709-1f5a-4f6c-9925-61a10039108f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ce376491-7ecb-4266-9eaa-0486bcbff6de","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/be245709-1f5a-4f6c-9925-61a10039108f/ticks/636921848054488021","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f29726aa-140d-4705-86dc-63c0b27ea326"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:25.4488021Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"63f2ad48-1277-4faa-98a8-43a9570ae475","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/63f2ad48-1277-4faa-98a8-43a9570ae475/ticks/636921848051688202","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:25.1688202Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"261262af-3d13-445a-b5a2-0cee2d20247b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"90e27fad-b159-491b-a9cf-30e047fea55f","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8/events/261262af-3d13-445a-b5a2-0cee2d20247b/ticks/636921848049252437","level":"Informational","resourceGroupName":"CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"38128a89-0c18-4c7d-9fdf-97555917be22","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"ff516d0a-1082-468a-926a-d71d2aec4b98"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:33:24.9252437Z","submissionTimestamp":"2019-04-30T01:33:43.0896257Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"2f4f1f18-00d5-488f-8db7-b185893d9b49","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"90e27fad-b159-491b-a9cf-30e047fea55f","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8/events/2f4f1f18-00d5-488f-8db7-b185893d9b49/ticks/636921848046502743","level":"Informational","resourceGroupName":"CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"38128a89-0c18-4c7d-9fdf-97555917be22","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:24.6502743Z","submissionTimestamp":"2019-04-30T01:33:43.0896257Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"b217a3d1-f841-49dd-b4cc-2af2d0a9efa7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ce376491-7ecb-4266-9eaa-0486bcbff6de","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b217a3d1-f841-49dd-b4cc-2af2d0a9efa7/ticks/636921848027147257","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:22.7147257Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"b52869c7-88de-47c1-9d76-2a24fdc7137a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a1678f27-3bbb-4ac9-b5e3-860645b7a181","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b52869c7-88de-47c1-9d76-2a24fdc7137a/ticks/636921848018336007","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c5731ac3-4b04-437d-aa4f-6db8380f350d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c6166a0f-3861-4097-a28b-4bdee045a964","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"ae5aa8aa-794b-4420-9bfe-907b736c24f1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8f15329b-1cc5-4f3e-89e1-bc8d35b604a3\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"ae5aa8aa-794b-4420-9bfe-907b736c24f1\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:21.8336007Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"1f9bca9a-26a1-4b43-9354-6b7cd58b0e3f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a1678f27-3bbb-4ac9-b5e3-860645b7a181","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/1f9bca9a-26a1-4b43-9354-6b7cd58b0e3f/ticks/636921848002828676","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c5731ac3-4b04-437d-aa4f-6db8380f350d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:20.2828676Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"189055f9-da68-42ad-9b5f-e386fcd2048e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/189055f9-da68-42ad-9b5f-e386fcd2048e/ticks/636921847993885244","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3bf594d0-6418-46f6-80eb-f37e8b77e84d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:19.3885244Z","submissionTimestamp":"2019-04-30T01:33:36.0962319Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6/ticks/636921847944659033","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a843135f-4ff7-42ad-b055-1b0cfdd343f9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"4d541dfe-58b5-411d-9f76-6a2c5cdb0ae4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b22d962-de45-46c6-9c63-97eefd031285\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.4659033Z","submissionTimestamp":"2019-04-30T01:33:34.1323739Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"5c8c7a78-a7e8-4717-a1f5-316800184d0d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/5c8c7a78-a7e8-4717-a1f5-316800184d0d/ticks/636921847943259231","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"857a0d40-a395-4707-b497-b8fb66b4dc7d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"41d28ee4-32c8-4dd6-86d9-22b753055106\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.3259231Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"75897743-a04e-4233-9740-e002e42de9d1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/75897743-a04e-4233-9740-e002e42de9d1/ticks/636921847942559053","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.2559053Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"6dbaa02e-441f-4a9f-ac03-ef45e5fad776","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6dbaa02e-441f-4a9f-ac03-ef45e5fad776/ticks/636921847941155985","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.1155985Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4c1a76c1-a86d-4043-8d85-98704735c6de","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/4c1a76c1-a86d-4043-8d85-98704735c6de/ticks/636921847939756255","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f472f507-3ff1-4cc2-9b32-f54e4a90ffd3","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1008963a-959e-420b-a59c-309206961da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:13.9756255Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"bbd27670-5685-4277-909a-566d426fad9d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/bbd27670-5685-4277-909a-566d426fad9d/ticks/636921847914206366","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.4206366Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"3f16164e-92fb-47d8-9d8d-a98a16a276cc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3f16164e-92fb-47d8-9d8d-a98a16a276cc/ticks/636921847911956470","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.195647Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"cfc3b5ea-3931-42d9-9b62-0d414e0fba90","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/cfc3b5ea-3931-42d9-9b62-0d414e0fba90/ticks/636921847911506027","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.1506027Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"7dc7743e-5ce7-441e-8ea8-e0a79d9ffd74","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/7dc7743e-5ce7-441e-8ea8-e0a79d9ffd74/ticks/636921847898244295","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:09.8244295Z","submissionTimestamp":"2019-04-30T01:33:38.1032392Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4070aa40-0ecf-45f9-92b2-585ce3890f6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/4070aa40-0ecf-45f9-92b2-585ce3890f6a/ticks/636921847866594064","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:06.6594064Z","submissionTimestamp":"2019-04-30T01:33:28.0904387Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '75353' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A33%3A58Z%20and%20correlationId%20eq%20%27fb9c1951-0224-4a4e-a21b-cb5894a50379%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"0e9bb038-db0d-40a7-99d6-67a65fe0d203","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/0e9bb038-db0d-40a7-99d6-67a65fe0d203/ticks/636921848175644882","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"1c70908d-1ee8-4b7c-8feb-351bff4cfef2","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:37.5644882Z","submissionTimestamp":"2019-04-30T01:33:53.0639977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"be245709-1f5a-4f6c-9925-61a10039108f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ce376491-7ecb-4266-9eaa-0486bcbff6de","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/be245709-1f5a-4f6c-9925-61a10039108f/ticks/636921848054488021","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f29726aa-140d-4705-86dc-63c0b27ea326"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:25.4488021Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"63f2ad48-1277-4faa-98a8-43a9570ae475","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/63f2ad48-1277-4faa-98a8-43a9570ae475/ticks/636921848051688202","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:25.1688202Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"261262af-3d13-445a-b5a2-0cee2d20247b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"90e27fad-b159-491b-a9cf-30e047fea55f","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8/events/261262af-3d13-445a-b5a2-0cee2d20247b/ticks/636921848049252437","level":"Informational","resourceGroupName":"CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"38128a89-0c18-4c7d-9fdf-97555917be22","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"ff516d0a-1082-468a-926a-d71d2aec4b98"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:33:24.9252437Z","submissionTimestamp":"2019-04-30T01:33:43.0896257Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"2f4f1f18-00d5-488f-8db7-b185893d9b49","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"90e27fad-b159-491b-a9cf-30e047fea55f","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8/events/2f4f1f18-00d5-488f-8db7-b185893d9b49/ticks/636921848046502743","level":"Informational","resourceGroupName":"CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"38128a89-0c18-4c7d-9fdf-97555917be22","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:24.6502743Z","submissionTimestamp":"2019-04-30T01:33:43.0896257Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"b217a3d1-f841-49dd-b4cc-2af2d0a9efa7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ce376491-7ecb-4266-9eaa-0486bcbff6de","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b217a3d1-f841-49dd-b4cc-2af2d0a9efa7/ticks/636921848027147257","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:22.7147257Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"31c6e62b-f80c-49c7-9574-a4cf2f0d0b87","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/31c6e62b-f80c-49c7-9574-a4cf2f0d0b87/ticks/636921848023459319","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"17a0afdb-bf6f-49e9-87ca-88c9321ea545","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:22.3459319Z","submissionTimestamp":"2019-04-30T01:33:48.1833997Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"b52869c7-88de-47c1-9d76-2a24fdc7137a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a1678f27-3bbb-4ac9-b5e3-860645b7a181","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b52869c7-88de-47c1-9d76-2a24fdc7137a/ticks/636921848018336007","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c5731ac3-4b04-437d-aa4f-6db8380f350d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c6166a0f-3861-4097-a28b-4bdee045a964","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"ae5aa8aa-794b-4420-9bfe-907b736c24f1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8f15329b-1cc5-4f3e-89e1-bc8d35b604a3\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"ae5aa8aa-794b-4420-9bfe-907b736c24f1\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:21.8336007Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"1f9bca9a-26a1-4b43-9354-6b7cd58b0e3f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a1678f27-3bbb-4ac9-b5e3-860645b7a181","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/1f9bca9a-26a1-4b43-9354-6b7cd58b0e3f/ticks/636921848002828676","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c5731ac3-4b04-437d-aa4f-6db8380f350d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:20.2828676Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"e1dcfe64-610c-44e5-89b2-82f50270a040","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e1dcfe64-610c-44e5-89b2-82f50270a040/ticks/636921847997189453","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5be9805f-86ab-48a9-a4a1-fa71051fbc52","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:19.7189453Z","submissionTimestamp":"2019-04-30T01:33:49.0926345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"189055f9-da68-42ad-9b5f-e386fcd2048e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/189055f9-da68-42ad-9b5f-e386fcd2048e/ticks/636921847993885244","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3bf594d0-6418-46f6-80eb-f37e8b77e84d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:19.3885244Z","submissionTimestamp":"2019-04-30T01:33:36.0962319Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6/ticks/636921847944659033","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a843135f-4ff7-42ad-b055-1b0cfdd343f9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"4d541dfe-58b5-411d-9f76-6a2c5cdb0ae4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b22d962-de45-46c6-9c63-97eefd031285\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.4659033Z","submissionTimestamp":"2019-04-30T01:33:34.1323739Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"5c8c7a78-a7e8-4717-a1f5-316800184d0d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/5c8c7a78-a7e8-4717-a1f5-316800184d0d/ticks/636921847943259231","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"857a0d40-a395-4707-b497-b8fb66b4dc7d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"41d28ee4-32c8-4dd6-86d9-22b753055106\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.3259231Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"75897743-a04e-4233-9740-e002e42de9d1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/75897743-a04e-4233-9740-e002e42de9d1/ticks/636921847942559053","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.2559053Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"6dbaa02e-441f-4a9f-ac03-ef45e5fad776","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6dbaa02e-441f-4a9f-ac03-ef45e5fad776/ticks/636921847941155985","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.1155985Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4c1a76c1-a86d-4043-8d85-98704735c6de","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/4c1a76c1-a86d-4043-8d85-98704735c6de/ticks/636921847939756255","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f472f507-3ff1-4cc2-9b32-f54e4a90ffd3","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1008963a-959e-420b-a59c-309206961da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:13.9756255Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"bbd27670-5685-4277-909a-566d426fad9d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/bbd27670-5685-4277-909a-566d426fad9d/ticks/636921847914206366","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.4206366Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"3f16164e-92fb-47d8-9d8d-a98a16a276cc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3f16164e-92fb-47d8-9d8d-a98a16a276cc/ticks/636921847911956470","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.195647Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"cfc3b5ea-3931-42d9-9b62-0d414e0fba90","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/cfc3b5ea-3931-42d9-9b62-0d414e0fba90/ticks/636921847911506027","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.1506027Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"7dc7743e-5ce7-441e-8ea8-e0a79d9ffd74","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/7dc7743e-5ce7-441e-8ea8-e0a79d9ffd74/ticks/636921847898244295","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:09.8244295Z","submissionTimestamp":"2019-04-30T01:33:38.1032392Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4070aa40-0ecf-45f9-92b2-585ce3890f6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/4070aa40-0ecf-45f9-92b2-585ce3890f6a/ticks/636921847866594064","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:06.6594064Z","submissionTimestamp":"2019-04-30T01:33:28.0904387Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '85956' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:33:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A34%3A09Z%20and%20correlationId%20eq%20%27fb9c1951-0224-4a4e-a21b-cb5894a50379%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"0e9bb038-db0d-40a7-99d6-67a65fe0d203","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/0e9bb038-db0d-40a7-99d6-67a65fe0d203/ticks/636921848175644882","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"1c70908d-1ee8-4b7c-8feb-351bff4cfef2","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:37.5644882Z","submissionTimestamp":"2019-04-30T01:33:53.0639977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"be245709-1f5a-4f6c-9925-61a10039108f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ce376491-7ecb-4266-9eaa-0486bcbff6de","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/be245709-1f5a-4f6c-9925-61a10039108f/ticks/636921848054488021","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f29726aa-140d-4705-86dc-63c0b27ea326"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:25.4488021Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"63f2ad48-1277-4faa-98a8-43a9570ae475","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/63f2ad48-1277-4faa-98a8-43a9570ae475/ticks/636921848051688202","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:25.1688202Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"261262af-3d13-445a-b5a2-0cee2d20247b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"90e27fad-b159-491b-a9cf-30e047fea55f","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8/events/261262af-3d13-445a-b5a2-0cee2d20247b/ticks/636921848049252437","level":"Informational","resourceGroupName":"CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"38128a89-0c18-4c7d-9fdf-97555917be22","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"ff516d0a-1082-468a-926a-d71d2aec4b98"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:33:24.9252437Z","submissionTimestamp":"2019-04-30T01:33:43.0896257Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"2f4f1f18-00d5-488f-8db7-b185893d9b49","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"90e27fad-b159-491b-a9cf-30e047fea55f","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8/events/2f4f1f18-00d5-488f-8db7-b185893d9b49/ticks/636921848046502743","level":"Informational","resourceGroupName":"CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"38128a89-0c18-4c7d-9fdf-97555917be22","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:24.6502743Z","submissionTimestamp":"2019-04-30T01:33:43.0896257Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"b217a3d1-f841-49dd-b4cc-2af2d0a9efa7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ce376491-7ecb-4266-9eaa-0486bcbff6de","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b217a3d1-f841-49dd-b4cc-2af2d0a9efa7/ticks/636921848027147257","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:22.7147257Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"31c6e62b-f80c-49c7-9574-a4cf2f0d0b87","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/31c6e62b-f80c-49c7-9574-a4cf2f0d0b87/ticks/636921848023459319","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"17a0afdb-bf6f-49e9-87ca-88c9321ea545","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:22.3459319Z","submissionTimestamp":"2019-04-30T01:33:48.1833997Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"b52869c7-88de-47c1-9d76-2a24fdc7137a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a1678f27-3bbb-4ac9-b5e3-860645b7a181","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b52869c7-88de-47c1-9d76-2a24fdc7137a/ticks/636921848018336007","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c5731ac3-4b04-437d-aa4f-6db8380f350d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c6166a0f-3861-4097-a28b-4bdee045a964","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"ae5aa8aa-794b-4420-9bfe-907b736c24f1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8f15329b-1cc5-4f3e-89e1-bc8d35b604a3\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"ae5aa8aa-794b-4420-9bfe-907b736c24f1\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:21.8336007Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"1f9bca9a-26a1-4b43-9354-6b7cd58b0e3f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a1678f27-3bbb-4ac9-b5e3-860645b7a181","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/1f9bca9a-26a1-4b43-9354-6b7cd58b0e3f/ticks/636921848002828676","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c5731ac3-4b04-437d-aa4f-6db8380f350d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:20.2828676Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"e1dcfe64-610c-44e5-89b2-82f50270a040","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e1dcfe64-610c-44e5-89b2-82f50270a040/ticks/636921847997189453","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5be9805f-86ab-48a9-a4a1-fa71051fbc52","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:19.7189453Z","submissionTimestamp":"2019-04-30T01:33:49.0926345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"189055f9-da68-42ad-9b5f-e386fcd2048e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/189055f9-da68-42ad-9b5f-e386fcd2048e/ticks/636921847993885244","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3bf594d0-6418-46f6-80eb-f37e8b77e84d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:19.3885244Z","submissionTimestamp":"2019-04-30T01:33:36.0962319Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6/ticks/636921847944659033","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a843135f-4ff7-42ad-b055-1b0cfdd343f9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"4d541dfe-58b5-411d-9f76-6a2c5cdb0ae4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b22d962-de45-46c6-9c63-97eefd031285\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.4659033Z","submissionTimestamp":"2019-04-30T01:33:34.1323739Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"5c8c7a78-a7e8-4717-a1f5-316800184d0d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/5c8c7a78-a7e8-4717-a1f5-316800184d0d/ticks/636921847943259231","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"857a0d40-a395-4707-b497-b8fb66b4dc7d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"41d28ee4-32c8-4dd6-86d9-22b753055106\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.3259231Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"75897743-a04e-4233-9740-e002e42de9d1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/75897743-a04e-4233-9740-e002e42de9d1/ticks/636921847942559053","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.2559053Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"6dbaa02e-441f-4a9f-ac03-ef45e5fad776","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6dbaa02e-441f-4a9f-ac03-ef45e5fad776/ticks/636921847941155985","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.1155985Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4c1a76c1-a86d-4043-8d85-98704735c6de","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/4c1a76c1-a86d-4043-8d85-98704735c6de/ticks/636921847939756255","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f472f507-3ff1-4cc2-9b32-f54e4a90ffd3","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1008963a-959e-420b-a59c-309206961da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:13.9756255Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"bbd27670-5685-4277-909a-566d426fad9d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/bbd27670-5685-4277-909a-566d426fad9d/ticks/636921847914206366","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.4206366Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"3f16164e-92fb-47d8-9d8d-a98a16a276cc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3f16164e-92fb-47d8-9d8d-a98a16a276cc/ticks/636921847911956470","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.195647Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"cfc3b5ea-3931-42d9-9b62-0d414e0fba90","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/cfc3b5ea-3931-42d9-9b62-0d414e0fba90/ticks/636921847911506027","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.1506027Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"7dc7743e-5ce7-441e-8ea8-e0a79d9ffd74","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/7dc7743e-5ce7-441e-8ea8-e0a79d9ffd74/ticks/636921847898244295","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:09.8244295Z","submissionTimestamp":"2019-04-30T01:33:38.1032392Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4070aa40-0ecf-45f9-92b2-585ce3890f6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/4070aa40-0ecf-45f9-92b2-585ce3890f6a/ticks/636921847866594064","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:06.6594064Z","submissionTimestamp":"2019-04-30T01:33:28.0904387Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '85956' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450188969062456?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: + - Tue, 30 Apr 2019 01:34:09 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 + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A34%3A19Z%20and%20correlationId%20eq%20%27fb9c1951-0224-4a4e-a21b-cb5894a50379%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"0e9bb038-db0d-40a7-99d6-67a65fe0d203","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/0e9bb038-db0d-40a7-99d6-67a65fe0d203/ticks/636921848175644882","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"1c70908d-1ee8-4b7c-8feb-351bff4cfef2","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:37.5644882Z","submissionTimestamp":"2019-04-30T01:33:53.0639977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"be245709-1f5a-4f6c-9925-61a10039108f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ce376491-7ecb-4266-9eaa-0486bcbff6de","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/be245709-1f5a-4f6c-9925-61a10039108f/ticks/636921848054488021","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f29726aa-140d-4705-86dc-63c0b27ea326"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:25.4488021Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"63f2ad48-1277-4faa-98a8-43a9570ae475","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/63f2ad48-1277-4faa-98a8-43a9570ae475/ticks/636921848051688202","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:25.1688202Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"261262af-3d13-445a-b5a2-0cee2d20247b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"90e27fad-b159-491b-a9cf-30e047fea55f","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8/events/261262af-3d13-445a-b5a2-0cee2d20247b/ticks/636921848049252437","level":"Informational","resourceGroupName":"CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"38128a89-0c18-4c7d-9fdf-97555917be22","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"ff516d0a-1082-468a-926a-d71d2aec4b98"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:33:24.9252437Z","submissionTimestamp":"2019-04-30T01:33:43.0896257Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"2f4f1f18-00d5-488f-8db7-b185893d9b49","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"90e27fad-b159-491b-a9cf-30e047fea55f","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8/events/2f4f1f18-00d5-488f-8db7-b185893d9b49/ticks/636921848046502743","level":"Informational","resourceGroupName":"CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"38128a89-0c18-4c7d-9fdf-97555917be22","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:24.6502743Z","submissionTimestamp":"2019-04-30T01:33:43.0896257Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"b217a3d1-f841-49dd-b4cc-2af2d0a9efa7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ce376491-7ecb-4266-9eaa-0486bcbff6de","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b217a3d1-f841-49dd-b4cc-2af2d0a9efa7/ticks/636921848027147257","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:22.7147257Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"31c6e62b-f80c-49c7-9574-a4cf2f0d0b87","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/31c6e62b-f80c-49c7-9574-a4cf2f0d0b87/ticks/636921848023459319","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"17a0afdb-bf6f-49e9-87ca-88c9321ea545","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:22.3459319Z","submissionTimestamp":"2019-04-30T01:33:48.1833997Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"b52869c7-88de-47c1-9d76-2a24fdc7137a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a1678f27-3bbb-4ac9-b5e3-860645b7a181","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b52869c7-88de-47c1-9d76-2a24fdc7137a/ticks/636921848018336007","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c5731ac3-4b04-437d-aa4f-6db8380f350d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c6166a0f-3861-4097-a28b-4bdee045a964","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"ae5aa8aa-794b-4420-9bfe-907b736c24f1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8f15329b-1cc5-4f3e-89e1-bc8d35b604a3\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"ae5aa8aa-794b-4420-9bfe-907b736c24f1\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:21.8336007Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"1f9bca9a-26a1-4b43-9354-6b7cd58b0e3f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a1678f27-3bbb-4ac9-b5e3-860645b7a181","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/1f9bca9a-26a1-4b43-9354-6b7cd58b0e3f/ticks/636921848002828676","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c5731ac3-4b04-437d-aa4f-6db8380f350d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:20.2828676Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"e1dcfe64-610c-44e5-89b2-82f50270a040","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e1dcfe64-610c-44e5-89b2-82f50270a040/ticks/636921847997189453","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5be9805f-86ab-48a9-a4a1-fa71051fbc52","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:19.7189453Z","submissionTimestamp":"2019-04-30T01:33:49.0926345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"189055f9-da68-42ad-9b5f-e386fcd2048e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/189055f9-da68-42ad-9b5f-e386fcd2048e/ticks/636921847993885244","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3bf594d0-6418-46f6-80eb-f37e8b77e84d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:19.3885244Z","submissionTimestamp":"2019-04-30T01:33:36.0962319Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6/ticks/636921847944659033","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a843135f-4ff7-42ad-b055-1b0cfdd343f9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"4d541dfe-58b5-411d-9f76-6a2c5cdb0ae4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b22d962-de45-46c6-9c63-97eefd031285\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.4659033Z","submissionTimestamp":"2019-04-30T01:33:34.1323739Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"5c8c7a78-a7e8-4717-a1f5-316800184d0d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/5c8c7a78-a7e8-4717-a1f5-316800184d0d/ticks/636921847943259231","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"857a0d40-a395-4707-b497-b8fb66b4dc7d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"41d28ee4-32c8-4dd6-86d9-22b753055106\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.3259231Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"75897743-a04e-4233-9740-e002e42de9d1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/75897743-a04e-4233-9740-e002e42de9d1/ticks/636921847942559053","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.2559053Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"6dbaa02e-441f-4a9f-ac03-ef45e5fad776","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6dbaa02e-441f-4a9f-ac03-ef45e5fad776/ticks/636921847941155985","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.1155985Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4c1a76c1-a86d-4043-8d85-98704735c6de","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/4c1a76c1-a86d-4043-8d85-98704735c6de/ticks/636921847939756255","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f472f507-3ff1-4cc2-9b32-f54e4a90ffd3","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1008963a-959e-420b-a59c-309206961da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:13.9756255Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"bbd27670-5685-4277-909a-566d426fad9d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/bbd27670-5685-4277-909a-566d426fad9d/ticks/636921847914206366","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.4206366Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"3f16164e-92fb-47d8-9d8d-a98a16a276cc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3f16164e-92fb-47d8-9d8d-a98a16a276cc/ticks/636921847911956470","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.195647Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"cfc3b5ea-3931-42d9-9b62-0d414e0fba90","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/cfc3b5ea-3931-42d9-9b62-0d414e0fba90/ticks/636921847911506027","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.1506027Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"7dc7743e-5ce7-441e-8ea8-e0a79d9ffd74","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/7dc7743e-5ce7-441e-8ea8-e0a79d9ffd74/ticks/636921847898244295","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:09.8244295Z","submissionTimestamp":"2019-04-30T01:33:38.1032392Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4070aa40-0ecf-45f9-92b2-585ce3890f6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/4070aa40-0ecf-45f9-92b2-585ce3890f6a/ticks/636921847866594064","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:06.6594064Z","submissionTimestamp":"2019-04-30T01:33:28.0904387Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '85956' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A34%3A30Z%20and%20correlationId%20eq%20%27fb9c1951-0224-4a4e-a21b-cb5894a50379%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"cacbb3be-ef3b-4426-88a0-06d739ddaba2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/cacbb3be-ef3b-4426-88a0-06d739ddaba2/ticks/636921848481147109","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"36472d76-7616-4e85-970c-8e973609058b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:08.1147109Z","submissionTimestamp":"2019-04-30T01:34:21.0636159Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"0e9bb038-db0d-40a7-99d6-67a65fe0d203","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/0e9bb038-db0d-40a7-99d6-67a65fe0d203/ticks/636921848175644882","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"1c70908d-1ee8-4b7c-8feb-351bff4cfef2","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:37.5644882Z","submissionTimestamp":"2019-04-30T01:33:53.0639977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"be245709-1f5a-4f6c-9925-61a10039108f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ce376491-7ecb-4266-9eaa-0486bcbff6de","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/be245709-1f5a-4f6c-9925-61a10039108f/ticks/636921848054488021","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f29726aa-140d-4705-86dc-63c0b27ea326"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:25.4488021Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"63f2ad48-1277-4faa-98a8-43a9570ae475","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/63f2ad48-1277-4faa-98a8-43a9570ae475/ticks/636921848051688202","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:25.1688202Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"261262af-3d13-445a-b5a2-0cee2d20247b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"90e27fad-b159-491b-a9cf-30e047fea55f","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8/events/261262af-3d13-445a-b5a2-0cee2d20247b/ticks/636921848049252437","level":"Informational","resourceGroupName":"CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"38128a89-0c18-4c7d-9fdf-97555917be22","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"ff516d0a-1082-468a-926a-d71d2aec4b98"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:33:24.9252437Z","submissionTimestamp":"2019-04-30T01:33:43.0896257Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"2f4f1f18-00d5-488f-8db7-b185893d9b49","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"90e27fad-b159-491b-a9cf-30e047fea55f","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8/events/2f4f1f18-00d5-488f-8db7-b185893d9b49/ticks/636921848046502743","level":"Informational","resourceGroupName":"CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"38128a89-0c18-4c7d-9fdf-97555917be22","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:24.6502743Z","submissionTimestamp":"2019-04-30T01:33:43.0896257Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"b217a3d1-f841-49dd-b4cc-2af2d0a9efa7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ce376491-7ecb-4266-9eaa-0486bcbff6de","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b217a3d1-f841-49dd-b4cc-2af2d0a9efa7/ticks/636921848027147257","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:22.7147257Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"31c6e62b-f80c-49c7-9574-a4cf2f0d0b87","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/31c6e62b-f80c-49c7-9574-a4cf2f0d0b87/ticks/636921848023459319","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"17a0afdb-bf6f-49e9-87ca-88c9321ea545","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:22.3459319Z","submissionTimestamp":"2019-04-30T01:33:48.1833997Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"b52869c7-88de-47c1-9d76-2a24fdc7137a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a1678f27-3bbb-4ac9-b5e3-860645b7a181","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b52869c7-88de-47c1-9d76-2a24fdc7137a/ticks/636921848018336007","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c5731ac3-4b04-437d-aa4f-6db8380f350d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c6166a0f-3861-4097-a28b-4bdee045a964","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"ae5aa8aa-794b-4420-9bfe-907b736c24f1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8f15329b-1cc5-4f3e-89e1-bc8d35b604a3\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"ae5aa8aa-794b-4420-9bfe-907b736c24f1\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:21.8336007Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"1f9bca9a-26a1-4b43-9354-6b7cd58b0e3f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a1678f27-3bbb-4ac9-b5e3-860645b7a181","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/1f9bca9a-26a1-4b43-9354-6b7cd58b0e3f/ticks/636921848002828676","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c5731ac3-4b04-437d-aa4f-6db8380f350d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:20.2828676Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"e1dcfe64-610c-44e5-89b2-82f50270a040","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e1dcfe64-610c-44e5-89b2-82f50270a040/ticks/636921847997189453","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5be9805f-86ab-48a9-a4a1-fa71051fbc52","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:19.7189453Z","submissionTimestamp":"2019-04-30T01:33:49.0926345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"189055f9-da68-42ad-9b5f-e386fcd2048e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/189055f9-da68-42ad-9b5f-e386fcd2048e/ticks/636921847993885244","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3bf594d0-6418-46f6-80eb-f37e8b77e84d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:19.3885244Z","submissionTimestamp":"2019-04-30T01:33:36.0962319Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6/ticks/636921847944659033","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a843135f-4ff7-42ad-b055-1b0cfdd343f9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"4d541dfe-58b5-411d-9f76-6a2c5cdb0ae4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b22d962-de45-46c6-9c63-97eefd031285\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.4659033Z","submissionTimestamp":"2019-04-30T01:33:34.1323739Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"5c8c7a78-a7e8-4717-a1f5-316800184d0d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/5c8c7a78-a7e8-4717-a1f5-316800184d0d/ticks/636921847943259231","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"857a0d40-a395-4707-b497-b8fb66b4dc7d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"41d28ee4-32c8-4dd6-86d9-22b753055106\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.3259231Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"75897743-a04e-4233-9740-e002e42de9d1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/75897743-a04e-4233-9740-e002e42de9d1/ticks/636921847942559053","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.2559053Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"6dbaa02e-441f-4a9f-ac03-ef45e5fad776","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6dbaa02e-441f-4a9f-ac03-ef45e5fad776/ticks/636921847941155985","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.1155985Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4c1a76c1-a86d-4043-8d85-98704735c6de","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/4c1a76c1-a86d-4043-8d85-98704735c6de/ticks/636921847939756255","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f472f507-3ff1-4cc2-9b32-f54e4a90ffd3","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1008963a-959e-420b-a59c-309206961da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:13.9756255Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"bbd27670-5685-4277-909a-566d426fad9d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/bbd27670-5685-4277-909a-566d426fad9d/ticks/636921847914206366","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.4206366Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"3f16164e-92fb-47d8-9d8d-a98a16a276cc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3f16164e-92fb-47d8-9d8d-a98a16a276cc/ticks/636921847911956470","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.195647Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"cfc3b5ea-3931-42d9-9b62-0d414e0fba90","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/cfc3b5ea-3931-42d9-9b62-0d414e0fba90/ticks/636921847911506027","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.1506027Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"7dc7743e-5ce7-441e-8ea8-e0a79d9ffd74","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/7dc7743e-5ce7-441e-8ea8-e0a79d9ffd74/ticks/636921847898244295","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:09.8244295Z","submissionTimestamp":"2019-04-30T01:33:38.1032392Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4070aa40-0ecf-45f9-92b2-585ce3890f6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/4070aa40-0ecf-45f9-92b2-585ce3890f6a/ticks/636921847866594064","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:06.6594064Z","submissionTimestamp":"2019-04-30T01:33:28.0904387Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '89535' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450188969062456?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: + - Tue, 30 Apr 2019 01:34:39 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: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","name":"vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","properties":{"templateHash":"1032368030322024711","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:34:22.9525236Z","duration":"PT1M14.3811438S","correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","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_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '3768' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34:40 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 + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A34%3A40Z%20and%20correlationId%20eq%20%27fb9c1951-0224-4a4e-a21b-cb5894a50379%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"cacbb3be-ef3b-4426-88a0-06d739ddaba2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/cacbb3be-ef3b-4426-88a0-06d739ddaba2/ticks/636921848481147109","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"36472d76-7616-4e85-970c-8e973609058b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:08.1147109Z","submissionTimestamp":"2019-04-30T01:34:21.0636159Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"0e9bb038-db0d-40a7-99d6-67a65fe0d203","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/0e9bb038-db0d-40a7-99d6-67a65fe0d203/ticks/636921848175644882","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"1c70908d-1ee8-4b7c-8feb-351bff4cfef2","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:37.5644882Z","submissionTimestamp":"2019-04-30T01:33:53.0639977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"be245709-1f5a-4f6c-9925-61a10039108f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ce376491-7ecb-4266-9eaa-0486bcbff6de","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/be245709-1f5a-4f6c-9925-61a10039108f/ticks/636921848054488021","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f29726aa-140d-4705-86dc-63c0b27ea326"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:25.4488021Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"63f2ad48-1277-4faa-98a8-43a9570ae475","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/63f2ad48-1277-4faa-98a8-43a9570ae475/ticks/636921848051688202","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:25.1688202Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"261262af-3d13-445a-b5a2-0cee2d20247b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"90e27fad-b159-491b-a9cf-30e047fea55f","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8/events/261262af-3d13-445a-b5a2-0cee2d20247b/ticks/636921848049252437","level":"Informational","resourceGroupName":"CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"38128a89-0c18-4c7d-9fdf-97555917be22","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"ff516d0a-1082-468a-926a-d71d2aec4b98"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:33:24.9252437Z","submissionTimestamp":"2019-04-30T01:33:43.0896257Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"2f4f1f18-00d5-488f-8db7-b185893d9b49","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"90e27fad-b159-491b-a9cf-30e047fea55f","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8/events/2f4f1f18-00d5-488f-8db7-b185893d9b49/ticks/636921848046502743","level":"Informational","resourceGroupName":"CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"38128a89-0c18-4c7d-9fdf-97555917be22","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:24.6502743Z","submissionTimestamp":"2019-04-30T01:33:43.0896257Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"b217a3d1-f841-49dd-b4cc-2af2d0a9efa7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ce376491-7ecb-4266-9eaa-0486bcbff6de","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b217a3d1-f841-49dd-b4cc-2af2d0a9efa7/ticks/636921848027147257","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2439042d-987f-461a-9717-652fccf8e6b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:22.7147257Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"31c6e62b-f80c-49c7-9574-a4cf2f0d0b87","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/31c6e62b-f80c-49c7-9574-a4cf2f0d0b87/ticks/636921848023459319","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"17a0afdb-bf6f-49e9-87ca-88c9321ea545","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:22.3459319Z","submissionTimestamp":"2019-04-30T01:33:48.1833997Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"b52869c7-88de-47c1-9d76-2a24fdc7137a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a1678f27-3bbb-4ac9-b5e3-860645b7a181","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b52869c7-88de-47c1-9d76-2a24fdc7137a/ticks/636921848018336007","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c5731ac3-4b04-437d-aa4f-6db8380f350d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c6166a0f-3861-4097-a28b-4bdee045a964","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"ae5aa8aa-794b-4420-9bfe-907b736c24f1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8f15329b-1cc5-4f3e-89e1-bc8d35b604a3\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"ae5aa8aa-794b-4420-9bfe-907b736c24f1\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:21.8336007Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"1f9bca9a-26a1-4b43-9354-6b7cd58b0e3f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a1678f27-3bbb-4ac9-b5e3-860645b7a181","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/1f9bca9a-26a1-4b43-9354-6b7cd58b0e3f/ticks/636921848002828676","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c5731ac3-4b04-437d-aa4f-6db8380f350d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:20.2828676Z","submissionTimestamp":"2019-04-30T01:33:44.0690037Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"e1dcfe64-610c-44e5-89b2-82f50270a040","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e1dcfe64-610c-44e5-89b2-82f50270a040/ticks/636921847997189453","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5be9805f-86ab-48a9-a4a1-fa71051fbc52","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:19.7189453Z","submissionTimestamp":"2019-04-30T01:33:49.0926345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"189055f9-da68-42ad-9b5f-e386fcd2048e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/189055f9-da68-42ad-9b5f-e386fcd2048e/ticks/636921847993885244","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3bf594d0-6418-46f6-80eb-f37e8b77e84d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:19.3885244Z","submissionTimestamp":"2019-04-30T01:33:36.0962319Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/a46fb7c6-1cdd-4b53-989e-ef4bb6159ea6/ticks/636921847944659033","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a843135f-4ff7-42ad-b055-1b0cfdd343f9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"4d541dfe-58b5-411d-9f76-6a2c5cdb0ae4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b22d962-de45-46c6-9c63-97eefd031285\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.4659033Z","submissionTimestamp":"2019-04-30T01:33:34.1323739Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"5c8c7a78-a7e8-4717-a1f5-316800184d0d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/5c8c7a78-a7e8-4717-a1f5-316800184d0d/ticks/636921847943259231","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"857a0d40-a395-4707-b497-b8fb66b4dc7d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"41d28ee4-32c8-4dd6-86d9-22b753055106\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"9a79bacd-49e6-45d2-99a5-1eec57d6d9ac\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:14.3259231Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"75897743-a04e-4233-9740-e002e42de9d1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/75897743-a04e-4233-9740-e002e42de9d1/ticks/636921847942559053","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.2559053Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"6dbaa02e-441f-4a9f-ac03-ef45e5fad776","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6dbaa02e-441f-4a9f-ac03-ef45e5fad776/ticks/636921847941155985","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:14.1155985Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4c1a76c1-a86d-4043-8d85-98704735c6de","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/4c1a76c1-a86d-4043-8d85-98704735c6de/ticks/636921847939756255","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f472f507-3ff1-4cc2-9b32-f54e4a90ffd3","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1008963a-959e-420b-a59c-309206961da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6956846c-f80e-4f0e-a803-1e478991dfb5\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:13.9756255Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"bbd27670-5685-4277-909a-566d426fad9d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"68555a8b-2d5b-420c-aad1-a4108b821d29","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/bbd27670-5685-4277-909a-566d426fad9d/ticks/636921847914206366","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6e74ced7-1c51-4ba3-9751-1007f71436b4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.4206366Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"3f16164e-92fb-47d8-9d8d-a98a16a276cc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d65fc15d-42ce-41b6-bed4-08587b566dc4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3f16164e-92fb-47d8-9d8d-a98a16a276cc/ticks/636921847911956470","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c8bd79d1-0cf7-4729-8854-431fd96ca9b9","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.195647Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"cfc3b5ea-3931-42d9-9b62-0d414e0fba90","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba09b2e3-800c-45bf-9889-78f29bd76173","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/cfc3b5ea-3931-42d9-9b62-0d414e0fba90/ticks/636921847911506027","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f50cb16b-43e5-47e3-b116-c698ec093713","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:11.1506027Z","submissionTimestamp":"2019-04-30T01:33:34.1313727Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"7dc7743e-5ce7-441e-8ea8-e0a79d9ffd74","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/7dc7743e-5ce7-441e-8ea8-e0a79d9ffd74/ticks/636921847898244295","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:33:09.8244295Z","submissionTimestamp":"2019-04-30T01:33:38.1032392Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","description":"","eventDataId":"4070aa40-0ecf-45f9-92b2-585ce3890f6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e6683dcc-6ae7-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5/events/4070aa40-0ecf-45f9-92b2-585ce3890f6a/ticks/636921847866594064","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vm_deploy_pDv9tZhVDMkkd68NFmelonYh73yv52r5","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"fb9c1951-0224-4a4e-a21b-cb5894a50379","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:06.6594064Z","submissionTimestamp":"2019-04-30T01:33:28.0904387Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '89535' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"vmId\": \"8863e97f-9410-4bd8-93c0-67e3fd859f0c\"\ + ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\ + \r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\ + \r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ + ,\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n\ + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ + \ \"name\": \"vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8\",\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_ppg_resources_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8\"\ + \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ + : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\ + ,\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\ + \ 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 \"requireGuestProvisionSignal\"\ + : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ + }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ + : {\r\n \"computerName\": \"vm1\",\r\n \"osName\": \"ubuntu\",\r\ + \n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\"\ + : \"2.2.40\",\r\n \"statuses\": [\r\n {\r\n \"\ + code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\"\ + ,\r\n \"displayStatus\": \"Ready\",\r\n \"message\"\ + : \"Guest Agent is running\",\r\n \"time\": \"2019-04-30T01:34:41+00:00\"\ + \r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n \ + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_d864fddf61334ad496f79075d667eaf8\"\ + ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ + : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ + \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ + \ \"time\": \"2019-04-30T01:33:25.5926611+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\": \"2019-04-30T01:34:20.0787556+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_ppg_resources_000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ + ,\r\n \"name\": \"vm1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4292' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34:42 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;3990,Microsoft.Compute/LowCostGet30Min;31971 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/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_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ + ,\r\n \"etag\": \"W/\\\"d9ebf41d-444f-4446-8b9a-0fd8a65b0f78\\\"\",\r\n \ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8f15329b-1cc5-4f3e-89e1-bc8d35b604a3\"\ + ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ + ,\r\n \"etag\": \"W/\\\"d9ebf41d-444f-4446-8b9a-0fd8a65b0f78\\\"\"\ + ,\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_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ + \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/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\": \"2shneqoiglle1bwzek1vgbkrag.dx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-32-E5-F3\",\r\n \"enableAcceleratedNetworking\"\ + : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/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_ppg_resources_000001/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: + - Tue, 30 Apr 2019 01:34:42 GMT + etag: + - W/"d9ebf41d-444f-4446-8b9a-0fd8a65b0f78" + 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: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/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_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ + ,\r\n \"etag\": \"W/\\\"127a1ce8-7159-458b-91d4-e06455a2ab57\\\"\",\r\n \ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0b22d962-de45-46c6-9c63-97eefd031285\"\ + ,\r\n \"ipAddress\": \"40.85.157.86\",\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_ppg_resources_000001/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: + - '1021' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34:42 GMT + etag: + - W/"127a1ce8-7159-458b-91d4-e06455a2ab57" + 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: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001","name":"cli_test_ppg_resources_000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:32:59Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34: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: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.21.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.5\",\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\":\"9\",\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-RAW\",\n \"version\":\"latest\"\n \ + \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ + \ \"offer\":\"SLES\",\n \"sku\":\"15\",\n \"\ + version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ + \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\",\n\ + \ \"sku\":\"18.04-LTS\",\n \"version\":\"latest\"\n\ + \ }\n },\n\n \"Windows\":{\n \"Win2019Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2019-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\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: + - '2433' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34:43 GMT + etag: + - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' + expires: + - Tue, 30 Apr 2019 01:39:43 GMT + source-age: + - '21' + 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: + - 83b5e48b1cf5b17c458943b7979213f431fd2bdf + x-frame-options: + - deny + x-geo-block-list: + - '' + x-github-request-id: + - FD42:7B31:8F483:A667D:5CC7A61C + x-served-by: + - cache-dfw18641-DFW + x-timer: + - S1556588084.833200,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: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/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_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\"\ + ,\r\n \"etag\": \"W/\\\"7ef69e8c-98fb-4a48-9a36-7d899ace7502\\\"\",\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"41d28ee4-32c8-4dd6-86d9-22b753055106\"\ + ,\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_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\ + ,\r\n \"etag\": \"W/\\\"7ef69e8c-98fb-4a48-9a36-7d899ace7502\\\"\ + \",\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_ppg_resources_000001/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: + - '1989' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34:43 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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"zoneMappings":[{"location":"East + US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central + US EUAP","zones":["1","2"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"East US","zones":["1","2","3"]},{"location":"UK + South","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Australia + East","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, + SystemAssignedResourceIdentity"},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"zoneMappings":[{"location":"East + US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central + US EUAP","zones":["1","2"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"East US","zones":["1","2","3"]},{"location":"UK + South","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Australia + East","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, + SystemAssignedResourceIdentity"},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations","locations":[],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"sharedVMImages/versions","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/artifactPublishers","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-03-01","2018-06-01","2017-10-15-preview"]},{"resourceType":"galleries","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-03-01","2018-06-01"],"capabilities":"None"},{"resourceType":"galleries/images","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-03-01","2018-06-01"],"capabilities":"None"},{"resourceType":"galleries/images/versions","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-03-01","2018-06-01"],"capabilities":"None"},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"East + US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central + US EUAP","zones":["1","2"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"East US","zones":["1","2","3"]},{"location":"UK + South","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Australia + East","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove"},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"]},{"resourceType":"proximityPlacementGroups","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"capabilities":"None"}],"registrationState":"Registered"}' + headers: + cache-control: + - no-cache + content-length: + - '27482' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"\ + Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/virtualMachines/VM1\"\ + \r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [],\r\n \"availabilitySets\"\ + : []\r\n },\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\"\ + ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\ + ,\r\n \"name\": \"my_ppg_1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '737' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34:43 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;31970 + 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": "vmss1LBPublicIP", "location": "westus", "tags": {}, "dependsOn": [], + "properties": {"publicIPAllocationMethod": "Dynamic"}}, {"type": "Microsoft.Network/loadBalancers", + "name": "vmss1LB", "location": "westus", "tags": {}, "apiVersion": "2018-01-01", + "dependsOn": ["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_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}}}]}}, + {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "vmss1", "location": + "westus", "tags": {}, "apiVersion": "2019-03-01", "dependsOn": ["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": "Canonical", + "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, "osProfile": + {"computerNamePrefix": "vmss115e0", "adminUsername": "tosin", "linuxConfiguration": + {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/tosin/.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": "vmss115e0Nic", "properties": {"primary": "true", "ipConfigurations": + [{"name": "vmss115e0IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"}, + "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], + "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}}, + "singlePlacementGroup": null, "proximityPlacementGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1"}}}], + "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(\''Microsoft.Compute/virtualMachineScaleSets\'', + \''vmss1\''),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: + - '4359' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","name":"vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","properties":{"templateHash":"15764877421330113470","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:34:47.5088686Z","duration":"PT1.1523357S","correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","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_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/operationStatuses/08586450187991210834?api-version=2018-05-01 + cache-control: + - no-cache + content-length: + - '2026' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34: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: + - vmss create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A34%3A54Z%20and%20correlationId%20eq%20%271c1947ee-1148-4533-81ff-a30292fb6fd1%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:34:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A05Z%20and%20correlationId%20eq%20%271c1947ee-1148-4533-81ff-a30292fb6fd1%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:35:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A15Z%20and%20correlationId%20eq%20%271c1947ee-1148-4533-81ff-a30292fb6fd1%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"0e00c304-ed57-4c30-b0b9-550f3a860235","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/0e00c304-ed57-4c30-b0b9-550f3a860235/ticks/636921848878976091","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:47.8976091Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c00107f5-0bba-495f-a35b-56fdedbabb79","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/c00107f5-0bba-495f-a35b-56fdedbabb79/ticks/636921848845825410","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:44.582541Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '7522' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:35:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450187991210834?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: + - Tue, 30 Apr 2019 01:35: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 + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A26Z%20and%20correlationId%20eq%20%271c1947ee-1148-4533-81ff-a30292fb6fd1%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c151baf0-d816-4306-b4a9-ea544fd92a0c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/c151baf0-d816-4306-b4a9-ea544fd92a0c/ticks/636921848999546831","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6a13747d-7c13-4d48-b30a-c85ee513e6a9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:59.9546831Z","submissionTimestamp":"2019-04-30T01:35:25.1146067Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"10cda101-5d54-4f44-a569-8f358d335c06","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d4499530-368f-4cdc-80dc-38c653be6188","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/10cda101-5d54-4f44-a569-8f358d335c06/ticks/636921848982561792","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:58.2561792Z","submissionTimestamp":"2019-04-30T01:35:19.0942426Z","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_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"bca170b1-bbcc-45f3-a30f-7b8bdb1241fb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c2340f0c-f20b-47d9-b34a-07eb336f8ef6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/bca170b1-bbcc-45f3-a30f-7b8bdb1241fb/ticks/636921848973261648","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"0f81c65c-2135-4485-b9d9-1a8346f4514b","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"47437603-b167-4b67-8713-668f054bdcdc","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f8b7f157-1ce3-4abd-953f-ffbdb211de3d\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"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_ppg_resources_000001/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":"2019-04-30T01:34:57.3261648Z","submissionTimestamp":"2019-04-30T01:35:19.0942426Z","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_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"7cd34793-d58e-4923-803b-8b0ceafb2057","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c2340f0c-f20b-47d9-b34a-07eb336f8ef6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/7cd34793-d58e-4923-803b-8b0ceafb2057/ticks/636921848956161417","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"0f81c65c-2135-4485-b9d9-1a8346f4514b","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_ppg_resources_000001/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_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:55.6161417Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"d2af93a9-417a-40cc-934d-49d8c4e9424a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"78c5335e-022b-408a-9a29-b54c5e4430a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/d2af93a9-417a-40cc-934d-49d8c4e9424a/ticks/636921848925077660","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"d5639817-2894-4b8b-a934-4d1e92a55b64","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"1bb05cd3-1c32-4217-8220-0ee1bd7bea93\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"45dfbf8d-ef8f-4973-b276-21cdd982c356\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:52.507766Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"92e11f28-015b-4a1b-b2ce-da09e100bd12","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/92e11f28-015b-4a1b-b2ce-da09e100bd12/ticks/636921848922896611","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.2896611Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"1ceda268-96c8-41d5-ae00-336db27c8c9a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"78c5335e-022b-408a-9a29-b54c5e4430a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/1ceda268-96c8-41d5-ae00-336db27c8c9a/ticks/636921848896881675","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","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":"2019-04-30T01:34:49.6881675Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"0e00c304-ed57-4c30-b0b9-550f3a860235","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/0e00c304-ed57-4c30-b0b9-550f3a860235/ticks/636921848878976091","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:47.8976091Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c00107f5-0bba-495f-a35b-56fdedbabb79","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/c00107f5-0bba-495f-a35b-56fdedbabb79/ticks/636921848845825410","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:44.582541Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '37898' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:35:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A37Z%20and%20correlationId%20eq%20%271c1947ee-1148-4533-81ff-a30292fb6fd1%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"b0820bad-a1ac-44ce-9cf5-688eb93accf8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/b0820bad-a1ac-44ce-9cf5-688eb93accf8/ticks/636921849122050774","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"43d56c33-1385-4ee1-9075-c2732907cd14","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:12.2050774Z","submissionTimestamp":"2019-04-30T01:35:30.1009857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"376989fe-59ce-4e44-ab45-a818f178f290","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d4499530-368f-4cdc-80dc-38c653be6188","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/376989fe-59ce-4e44-ab45-a818f178f290/ticks/636921849006680232","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3e15c8a2-a776-4fb3-a41a-e1309356a42d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:00.6680232Z","submissionTimestamp":"2019-04-30T01:35:29.0817578Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"808ccfd8-8f70-4ef1-8a79-ff6499171dad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/808ccfd8-8f70-4ef1-8a79-ff6499171dad/ticks/636921849004130197","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:00.4130197Z","submissionTimestamp":"2019-04-30T01:35:29.0817578Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c151baf0-d816-4306-b4a9-ea544fd92a0c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/c151baf0-d816-4306-b4a9-ea544fd92a0c/ticks/636921848999546831","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6a13747d-7c13-4d48-b30a-c85ee513e6a9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:59.9546831Z","submissionTimestamp":"2019-04-30T01:35:25.1146067Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"10cda101-5d54-4f44-a569-8f358d335c06","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d4499530-368f-4cdc-80dc-38c653be6188","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/10cda101-5d54-4f44-a569-8f358d335c06/ticks/636921848982561792","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:58.2561792Z","submissionTimestamp":"2019-04-30T01:35:19.0942426Z","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_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"bca170b1-bbcc-45f3-a30f-7b8bdb1241fb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c2340f0c-f20b-47d9-b34a-07eb336f8ef6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/bca170b1-bbcc-45f3-a30f-7b8bdb1241fb/ticks/636921848973261648","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"0f81c65c-2135-4485-b9d9-1a8346f4514b","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"47437603-b167-4b67-8713-668f054bdcdc","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f8b7f157-1ce3-4abd-953f-ffbdb211de3d\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"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_ppg_resources_000001/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":"2019-04-30T01:34:57.3261648Z","submissionTimestamp":"2019-04-30T01:35:19.0942426Z","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_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"7cd34793-d58e-4923-803b-8b0ceafb2057","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c2340f0c-f20b-47d9-b34a-07eb336f8ef6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/7cd34793-d58e-4923-803b-8b0ceafb2057/ticks/636921848956161417","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"0f81c65c-2135-4485-b9d9-1a8346f4514b","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_ppg_resources_000001/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_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:55.6161417Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"d2af93a9-417a-40cc-934d-49d8c4e9424a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"78c5335e-022b-408a-9a29-b54c5e4430a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/d2af93a9-417a-40cc-934d-49d8c4e9424a/ticks/636921848925077660","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"d5639817-2894-4b8b-a934-4d1e92a55b64","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"1bb05cd3-1c32-4217-8220-0ee1bd7bea93\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"45dfbf8d-ef8f-4973-b276-21cdd982c356\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:52.507766Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"92e11f28-015b-4a1b-b2ce-da09e100bd12","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/92e11f28-015b-4a1b-b2ce-da09e100bd12/ticks/636921848922896611","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.2896611Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"1ceda268-96c8-41d5-ae00-336db27c8c9a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"78c5335e-022b-408a-9a29-b54c5e4430a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/1ceda268-96c8-41d5-ae00-336db27c8c9a/ticks/636921848896881675","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","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":"2019-04-30T01:34:49.6881675Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"0e00c304-ed57-4c30-b0b9-550f3a860235","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/0e00c304-ed57-4c30-b0b9-550f3a860235/ticks/636921848878976091","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:47.8976091Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c00107f5-0bba-495f-a35b-56fdedbabb79","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/c00107f5-0bba-495f-a35b-56fdedbabb79/ticks/636921848845825410","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:44.582541Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '48927' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:35:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A47Z%20and%20correlationId%20eq%20%271c1947ee-1148-4533-81ff-a30292fb6fd1%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"b0820bad-a1ac-44ce-9cf5-688eb93accf8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/b0820bad-a1ac-44ce-9cf5-688eb93accf8/ticks/636921849122050774","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"43d56c33-1385-4ee1-9075-c2732907cd14","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:12.2050774Z","submissionTimestamp":"2019-04-30T01:35:30.1009857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"376989fe-59ce-4e44-ab45-a818f178f290","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d4499530-368f-4cdc-80dc-38c653be6188","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/376989fe-59ce-4e44-ab45-a818f178f290/ticks/636921849006680232","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3e15c8a2-a776-4fb3-a41a-e1309356a42d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:00.6680232Z","submissionTimestamp":"2019-04-30T01:35:29.0817578Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"808ccfd8-8f70-4ef1-8a79-ff6499171dad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/808ccfd8-8f70-4ef1-8a79-ff6499171dad/ticks/636921849004130197","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:00.4130197Z","submissionTimestamp":"2019-04-30T01:35:29.0817578Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c151baf0-d816-4306-b4a9-ea544fd92a0c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/c151baf0-d816-4306-b4a9-ea544fd92a0c/ticks/636921848999546831","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6a13747d-7c13-4d48-b30a-c85ee513e6a9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:59.9546831Z","submissionTimestamp":"2019-04-30T01:35:25.1146067Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"10cda101-5d54-4f44-a569-8f358d335c06","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d4499530-368f-4cdc-80dc-38c653be6188","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/10cda101-5d54-4f44-a569-8f358d335c06/ticks/636921848982561792","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:58.2561792Z","submissionTimestamp":"2019-04-30T01:35:19.0942426Z","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_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"bca170b1-bbcc-45f3-a30f-7b8bdb1241fb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c2340f0c-f20b-47d9-b34a-07eb336f8ef6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/bca170b1-bbcc-45f3-a30f-7b8bdb1241fb/ticks/636921848973261648","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"0f81c65c-2135-4485-b9d9-1a8346f4514b","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"47437603-b167-4b67-8713-668f054bdcdc","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f8b7f157-1ce3-4abd-953f-ffbdb211de3d\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"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_ppg_resources_000001/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":"2019-04-30T01:34:57.3261648Z","submissionTimestamp":"2019-04-30T01:35:19.0942426Z","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_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"7cd34793-d58e-4923-803b-8b0ceafb2057","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c2340f0c-f20b-47d9-b34a-07eb336f8ef6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/7cd34793-d58e-4923-803b-8b0ceafb2057/ticks/636921848956161417","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"0f81c65c-2135-4485-b9d9-1a8346f4514b","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_ppg_resources_000001/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_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:55.6161417Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"d2af93a9-417a-40cc-934d-49d8c4e9424a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"78c5335e-022b-408a-9a29-b54c5e4430a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/d2af93a9-417a-40cc-934d-49d8c4e9424a/ticks/636921848925077660","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"d5639817-2894-4b8b-a934-4d1e92a55b64","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"1bb05cd3-1c32-4217-8220-0ee1bd7bea93\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"45dfbf8d-ef8f-4973-b276-21cdd982c356\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:52.507766Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"92e11f28-015b-4a1b-b2ce-da09e100bd12","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/92e11f28-015b-4a1b-b2ce-da09e100bd12/ticks/636921848922896611","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.2896611Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"1ceda268-96c8-41d5-ae00-336db27c8c9a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"78c5335e-022b-408a-9a29-b54c5e4430a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/1ceda268-96c8-41d5-ae00-336db27c8c9a/ticks/636921848896881675","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","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":"2019-04-30T01:34:49.6881675Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"0e00c304-ed57-4c30-b0b9-550f3a860235","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/0e00c304-ed57-4c30-b0b9-550f3a860235/ticks/636921848878976091","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:47.8976091Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c00107f5-0bba-495f-a35b-56fdedbabb79","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/c00107f5-0bba-495f-a35b-56fdedbabb79/ticks/636921848845825410","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:44.582541Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '48927' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:35:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450187991210834?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: + - Tue, 30 Apr 2019 01:35: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 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A58Z%20and%20correlationId%20eq%20%271c1947ee-1148-4533-81ff-a30292fb6fd1%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"b0820bad-a1ac-44ce-9cf5-688eb93accf8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/b0820bad-a1ac-44ce-9cf5-688eb93accf8/ticks/636921849122050774","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"43d56c33-1385-4ee1-9075-c2732907cd14","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:12.2050774Z","submissionTimestamp":"2019-04-30T01:35:30.1009857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"376989fe-59ce-4e44-ab45-a818f178f290","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d4499530-368f-4cdc-80dc-38c653be6188","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/376989fe-59ce-4e44-ab45-a818f178f290/ticks/636921849006680232","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3e15c8a2-a776-4fb3-a41a-e1309356a42d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:00.6680232Z","submissionTimestamp":"2019-04-30T01:35:29.0817578Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"808ccfd8-8f70-4ef1-8a79-ff6499171dad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/808ccfd8-8f70-4ef1-8a79-ff6499171dad/ticks/636921849004130197","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:00.4130197Z","submissionTimestamp":"2019-04-30T01:35:29.0817578Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c151baf0-d816-4306-b4a9-ea544fd92a0c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/c151baf0-d816-4306-b4a9-ea544fd92a0c/ticks/636921848999546831","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6a13747d-7c13-4d48-b30a-c85ee513e6a9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:59.9546831Z","submissionTimestamp":"2019-04-30T01:35:25.1146067Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"10cda101-5d54-4f44-a569-8f358d335c06","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d4499530-368f-4cdc-80dc-38c653be6188","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/10cda101-5d54-4f44-a569-8f358d335c06/ticks/636921848982561792","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:58.2561792Z","submissionTimestamp":"2019-04-30T01:35:19.0942426Z","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_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"bca170b1-bbcc-45f3-a30f-7b8bdb1241fb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c2340f0c-f20b-47d9-b34a-07eb336f8ef6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/bca170b1-bbcc-45f3-a30f-7b8bdb1241fb/ticks/636921848973261648","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"0f81c65c-2135-4485-b9d9-1a8346f4514b","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"47437603-b167-4b67-8713-668f054bdcdc","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f8b7f157-1ce3-4abd-953f-ffbdb211de3d\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"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_ppg_resources_000001/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":"2019-04-30T01:34:57.3261648Z","submissionTimestamp":"2019-04-30T01:35:19.0942426Z","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_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"7cd34793-d58e-4923-803b-8b0ceafb2057","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c2340f0c-f20b-47d9-b34a-07eb336f8ef6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/7cd34793-d58e-4923-803b-8b0ceafb2057/ticks/636921848956161417","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"0f81c65c-2135-4485-b9d9-1a8346f4514b","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_ppg_resources_000001/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_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:55.6161417Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"d2af93a9-417a-40cc-934d-49d8c4e9424a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"78c5335e-022b-408a-9a29-b54c5e4430a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/d2af93a9-417a-40cc-934d-49d8c4e9424a/ticks/636921848925077660","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"d5639817-2894-4b8b-a934-4d1e92a55b64","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"1bb05cd3-1c32-4217-8220-0ee1bd7bea93\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"45dfbf8d-ef8f-4973-b276-21cdd982c356\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:52.507766Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"92e11f28-015b-4a1b-b2ce-da09e100bd12","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/92e11f28-015b-4a1b-b2ce-da09e100bd12/ticks/636921848922896611","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.2896611Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"1ceda268-96c8-41d5-ae00-336db27c8c9a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"78c5335e-022b-408a-9a29-b54c5e4430a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/1ceda268-96c8-41d5-ae00-336db27c8c9a/ticks/636921848896881675","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","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":"2019-04-30T01:34:49.6881675Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"0e00c304-ed57-4c30-b0b9-550f3a860235","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/0e00c304-ed57-4c30-b0b9-550f3a860235/ticks/636921848878976091","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:47.8976091Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c00107f5-0bba-495f-a35b-56fdedbabb79","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/c00107f5-0bba-495f-a35b-56fdedbabb79/ticks/636921848845825410","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:44.582541Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '48927' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:35:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A08Z%20and%20correlationId%20eq%20%271c1947ee-1148-4533-81ff-a30292fb6fd1%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"b0820bad-a1ac-44ce-9cf5-688eb93accf8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/b0820bad-a1ac-44ce-9cf5-688eb93accf8/ticks/636921849122050774","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"43d56c33-1385-4ee1-9075-c2732907cd14","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:12.2050774Z","submissionTimestamp":"2019-04-30T01:35:30.1009857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"376989fe-59ce-4e44-ab45-a818f178f290","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d4499530-368f-4cdc-80dc-38c653be6188","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/376989fe-59ce-4e44-ab45-a818f178f290/ticks/636921849006680232","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3e15c8a2-a776-4fb3-a41a-e1309356a42d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:00.6680232Z","submissionTimestamp":"2019-04-30T01:35:29.0817578Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"808ccfd8-8f70-4ef1-8a79-ff6499171dad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/808ccfd8-8f70-4ef1-8a79-ff6499171dad/ticks/636921849004130197","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:00.4130197Z","submissionTimestamp":"2019-04-30T01:35:29.0817578Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c151baf0-d816-4306-b4a9-ea544fd92a0c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/c151baf0-d816-4306-b4a9-ea544fd92a0c/ticks/636921848999546831","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6a13747d-7c13-4d48-b30a-c85ee513e6a9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:59.9546831Z","submissionTimestamp":"2019-04-30T01:35:25.1146067Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"10cda101-5d54-4f44-a569-8f358d335c06","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d4499530-368f-4cdc-80dc-38c653be6188","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/10cda101-5d54-4f44-a569-8f358d335c06/ticks/636921848982561792","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:58.2561792Z","submissionTimestamp":"2019-04-30T01:35:19.0942426Z","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_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"bca170b1-bbcc-45f3-a30f-7b8bdb1241fb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c2340f0c-f20b-47d9-b34a-07eb336f8ef6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/bca170b1-bbcc-45f3-a30f-7b8bdb1241fb/ticks/636921848973261648","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"0f81c65c-2135-4485-b9d9-1a8346f4514b","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"47437603-b167-4b67-8713-668f054bdcdc","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f8b7f157-1ce3-4abd-953f-ffbdb211de3d\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"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_ppg_resources_000001/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":"2019-04-30T01:34:57.3261648Z","submissionTimestamp":"2019-04-30T01:35:19.0942426Z","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_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"7cd34793-d58e-4923-803b-8b0ceafb2057","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c2340f0c-f20b-47d9-b34a-07eb336f8ef6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/7cd34793-d58e-4923-803b-8b0ceafb2057/ticks/636921848956161417","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"0f81c65c-2135-4485-b9d9-1a8346f4514b","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_ppg_resources_000001/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_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:55.6161417Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"d2af93a9-417a-40cc-934d-49d8c4e9424a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"78c5335e-022b-408a-9a29-b54c5e4430a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/d2af93a9-417a-40cc-934d-49d8c4e9424a/ticks/636921848925077660","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"d5639817-2894-4b8b-a934-4d1e92a55b64","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"1bb05cd3-1c32-4217-8220-0ee1bd7bea93\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"45dfbf8d-ef8f-4973-b276-21cdd982c356\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:52.507766Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"92e11f28-015b-4a1b-b2ce-da09e100bd12","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/92e11f28-015b-4a1b-b2ce-da09e100bd12/ticks/636921848922896611","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.2896611Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"1ceda268-96c8-41d5-ae00-336db27c8c9a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"78c5335e-022b-408a-9a29-b54c5e4430a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/1ceda268-96c8-41d5-ae00-336db27c8c9a/ticks/636921848896881675","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","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":"2019-04-30T01:34:49.6881675Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"0e00c304-ed57-4c30-b0b9-550f3a860235","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/0e00c304-ed57-4c30-b0b9-550f3a860235/ticks/636921848878976091","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:47.8976091Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c00107f5-0bba-495f-a35b-56fdedbabb79","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/c00107f5-0bba-495f-a35b-56fdedbabb79/ticks/636921848845825410","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:44.582541Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '48927' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450187991210834?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: + - Tue, 30 Apr 2019 01:36: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 + ParameterSetName: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A18Z%20and%20correlationId%20eq%20%271c1947ee-1148-4533-81ff-a30292fb6fd1%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"b0820bad-a1ac-44ce-9cf5-688eb93accf8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/b0820bad-a1ac-44ce-9cf5-688eb93accf8/ticks/636921849122050774","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"43d56c33-1385-4ee1-9075-c2732907cd14","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:12.2050774Z","submissionTimestamp":"2019-04-30T01:35:30.1009857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"376989fe-59ce-4e44-ab45-a818f178f290","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d4499530-368f-4cdc-80dc-38c653be6188","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/376989fe-59ce-4e44-ab45-a818f178f290/ticks/636921849006680232","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"3e15c8a2-a776-4fb3-a41a-e1309356a42d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:35:00.6680232Z","submissionTimestamp":"2019-04-30T01:35:29.0817578Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"808ccfd8-8f70-4ef1-8a79-ff6499171dad","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/808ccfd8-8f70-4ef1-8a79-ff6499171dad/ticks/636921849004130197","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:00.4130197Z","submissionTimestamp":"2019-04-30T01:35:29.0817578Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c151baf0-d816-4306-b4a9-ea544fd92a0c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/c151baf0-d816-4306-b4a9-ea544fd92a0c/ticks/636921848999546831","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6a13747d-7c13-4d48-b30a-c85ee513e6a9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:59.9546831Z","submissionTimestamp":"2019-04-30T01:35:25.1146067Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"10cda101-5d54-4f44-a569-8f358d335c06","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d4499530-368f-4cdc-80dc-38c653be6188","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/10cda101-5d54-4f44-a569-8f358d335c06/ticks/636921848982561792","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"08a357c5-0fd1-4f43-b086-d85427ecae39","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:58.2561792Z","submissionTimestamp":"2019-04-30T01:35:19.0942426Z","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_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"bca170b1-bbcc-45f3-a30f-7b8bdb1241fb","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c2340f0c-f20b-47d9-b34a-07eb336f8ef6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/bca170b1-bbcc-45f3-a30f-7b8bdb1241fb/ticks/636921848973261648","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"0f81c65c-2135-4485-b9d9-1a8346f4514b","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"47437603-b167-4b67-8713-668f054bdcdc","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f8b7f157-1ce3-4abd-953f-ffbdb211de3d\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"73f3f758-74e1-43f2-b6cb-673c91bf7a80\\\"\",\"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_ppg_resources_000001/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":"2019-04-30T01:34:57.3261648Z","submissionTimestamp":"2019-04-30T01:35:19.0942426Z","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_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"7cd34793-d58e-4923-803b-8b0ceafb2057","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c2340f0c-f20b-47d9-b34a-07eb336f8ef6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/7cd34793-d58e-4923-803b-8b0ceafb2057/ticks/636921848956161417","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"0f81c65c-2135-4485-b9d9-1a8346f4514b","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_ppg_resources_000001/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_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:55.6161417Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"d2af93a9-417a-40cc-934d-49d8c4e9424a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"78c5335e-022b-408a-9a29-b54c5e4430a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/d2af93a9-417a-40cc-934d-49d8c4e9424a/ticks/636921848925077660","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"d5639817-2894-4b8b-a934-4d1e92a55b64","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"1bb05cd3-1c32-4217-8220-0ee1bd7bea93\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"45dfbf8d-ef8f-4973-b276-21cdd982c356\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:52.507766Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"92e11f28-015b-4a1b-b2ce-da09e100bd12","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/92e11f28-015b-4a1b-b2ce-da09e100bd12/ticks/636921848922896611","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.2896611Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/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":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"1ceda268-96c8-41d5-ae00-336db27c8c9a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"78c5335e-022b-408a-9a29-b54c5e4430a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/1ceda268-96c8-41d5-ae00-336db27c8c9a/ticks/636921848896881675","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"73f95823-1b7b-4acc-9b5e-763cee7f8340","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":"2019-04-30T01:34:49.6881675Z","submissionTimestamp":"2019-04-30T01:35:19.0932405Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"0e00c304-ed57-4c30-b0b9-550f3a860235","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/0e00c304-ed57-4c30-b0b9-550f3a860235/ticks/636921848878976091","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:47.8976091Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","description":"","eventDataId":"c00107f5-0bba-495f-a35b-56fdedbabb79","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2131b532-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU/events/c00107f5-0bba-495f-a35b-56fdedbabb79/ticks/636921848845825410","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:44.582541Z","submissionTimestamp":"2019-04-30T01:35:07.1532757Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '48927' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + 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: + - -g -n --image --ssh-key-value --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","name":"vmss_deploy_r5JAx0lUyVBJXV0BA8C9aO0Y8bkRxMbU","properties":{"templateHash":"15764877421330113470","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:36:06.3163174Z","duration":"PT1M19.9597845S","correlationId":"1c1947ee-1148-4533-81ff-a30292fb6fd1","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_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"proximityPlacementGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss115e0","adminUsername":"tosin","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/tosin/.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,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"}},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss115e0Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss115e0IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"uniqueId":"9be75186-0b75-45ce-83cc-2b0ffbb9a0e0"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '5514' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36:19 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 + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2019-03-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 \"proximityPlacementGroup\": {\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\ + \r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\ + \n \"computerNamePrefix\": \"vmss115e0\",\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 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 \"requireGuestProvisionSignal\"\ + : true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\ + \n \"createOption\": \"FromImage\",\r\n \"caching\": \"\ + ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ + : \"Premium_LRS\"\r\n }\r\n },\r\n \"imageReference\"\ + : {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"\ + UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\"\ + : \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\ + :[{\"name\":\"vmss115e0Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\"\ + :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ + ipConfigurations\":[{\"name\":\"vmss115e0IPConfig\",\"properties\":{\"subnet\"\ + :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\ + },\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\ + :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"\ + }],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"\ + }]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ + overprovision\": true,\r\n \"uniqueId\": \"9be75186-0b75-45ce-83cc-2b0ffbb9a0e0\"\ + \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_ppg_resources_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1\"\ + ,\r\n \"name\": \"vmss1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3755' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36: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/GetVMScaleSet3Min;193,Microsoft.Compute/GetVMScaleSet30Min;1293 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm availability-set create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001","name":"cli_test_ppg_resources_000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:32:59Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36: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: + - vm availability-set create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"zoneMappings":[{"location":"East + US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central + US EUAP","zones":["1","2"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"East US","zones":["1","2","3"]},{"location":"UK + South","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Australia + East","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, + SystemAssignedResourceIdentity"},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}],"zoneMappings":[{"location":"East + US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central + US EUAP","zones":["1","2"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"East US","zones":["1","2","3"]},{"location":"UK + South","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Australia + East","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, + SystemAssignedResourceIdentity"},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations","locations":[],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2018-06-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"}]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"sharedVMImages/versions","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/artifactPublishers","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-03-01","2018-06-01","2017-10-15-preview"]},{"resourceType":"galleries","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-03-01","2018-06-01"],"capabilities":"None"},{"resourceType":"galleries/images","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-03-01","2018-06-01"],"capabilities":"None"},{"resourceType":"galleries/images/versions","locations":["West + Central US","South Central US","East US 2","Southeast Asia","West Europe","West + US","East US","Canada Central","North Europe","North Central US","Brazil South","UK + West","West India","East Asia","Australia East","Japan East","Korea South","West + US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan + West","Korea Central","France Central","Central US","East US 2 EUAP","Central + US EUAP"],"apiVersions":["2019-03-01","2018-06-01"],"capabilities":"None"},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"East + US 2","zones":["1","2","3"]},{"location":"Central US","zones":["1","2","3"]},{"location":"West + Europe","zones":["1","2","3"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central + US EUAP","zones":["1","2"]},{"location":"France Central","zones":["1","2","3"]},{"location":"Southeast + Asia","zones":["1","2","3"]},{"location":"West US 2","zones":["1","2","3"]},{"location":"North + Europe","zones":["1","2","3"]},{"location":"East US","zones":["1","2","3"]},{"location":"UK + South","zones":["1","2","3"]},{"location":"Japan East","zones":["1","2","3"]},{"location":"Australia + East","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove"},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove"},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"]},{"resourceType":"proximityPlacementGroups","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South","France Central","South Africa North","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"capabilities":"None"}],"registrationState":"Registered"}' + headers: + cache-control: + - no-cache + content-length: + - '27482' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36: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: + - vm availability-set create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"\ + Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/virtualMachines/VM1\"\ + \r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [\r\n {\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\ + \r\n }\r\n ],\r\n \"availabilitySets\": []\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"westus\"\ + ,\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\ + ,\r\n \"name\": \"my_ppg_1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '979' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36: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/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31976 + 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.Compute/availabilitySets", "name": "avset1", "location": + "westus", "tags": {}, "apiVersion": "2019-03-01", "properties": {"platformFaultDomainCount": + 2, "proximityPlacementGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1"}}, + "sku": {"name": "Aligned"}}], "outputs": {}}, "parameters": {}, "mode": "Incremental"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm availability-set create + Connection: + - keep-alive + Content-Length: + - '705' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/av_set_deploy_Hqy0RpJRLy25aWsuKzFsc9Z1dm4YSTOa","name":"av_set_deploy_Hqy0RpJRLy25aWsuKzFsc9Z1dm4YSTOa","properties":{"templateHash":"11150200459473154335","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:36:23.8595571Z","duration":"PT0.556505S","correlationId":"050afc5c-f2eb-4012-86d8-20000b15d6a6","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/av_set_deploy_Hqy0RpJRLy25aWsuKzFsc9Z1dm4YSTOa/operationStatuses/08586450187021745560?api-version=2018-05-01 + cache-control: + - no-cache + content-length: + - '683' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36:23 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 availability-set create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A32Z%20and%20correlationId%20eq%20%27050afc5c-f2eb-4012-86d8-20000b15d6a6%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm availability-set create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A42Z%20and%20correlationId%20eq%20%27050afc5c-f2eb-4012-86d8-20000b15d6a6%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm availability-set create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A52Z%20and%20correlationId%20eq%20%27050afc5c-f2eb-4012-86d8-20000b15d6a6%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/availabilitySets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/availabilitySets/avset1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"050afc5c-f2eb-4012-86d8-20000b15d6a6","description":"","eventDataId":"25b5f0f4-3da7-4a50-a8be-f0b74e0b1ed3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dae71741-bc38-4693-a7ac-6349658cc498","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/availabilitySets/avset1/events/25b5f0f4-3da7-4a50-a8be-f0b74e0b1ed3/ticks/636921849881763611","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/availabilitySets/avset1","resourceType":{"value":"Microsoft.Compute/availabilitySets","localizedValue":"Microsoft.Compute/availabilitySets"},"operationId":"bc2bfaea-cc59-45e0-8e67-f320a00c2cec","operationName":{"value":"Microsoft.Compute/availabilitySets/write","localizedValue":"Create + or Update Availability Set"},"properties":{"statusCode":"OK","serviceRequestId":"e2252053-4c1e-4756-933f-0b1011d82a55"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:28.1763611Z","submissionTimestamp":"2019-04-30T01:36:44.0809413Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/availabilitySets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/availabilitySets/avset1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"050afc5c-f2eb-4012-86d8-20000b15d6a6","description":"","eventDataId":"d1ab02e7-7c86-4840-9487-23f1dd1903d8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"dae71741-bc38-4693-a7ac-6349658cc498","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/availabilitySets/avset1/events/d1ab02e7-7c86-4840-9487-23f1dd1903d8/ticks/636921849854815481","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/availabilitySets/avset1","resourceType":{"value":"Microsoft.Compute/availabilitySets","localizedValue":"Microsoft.Compute/availabilitySets"},"operationId":"bc2bfaea-cc59-45e0-8e67-f320a00c2cec","operationName":{"value":"Microsoft.Compute/availabilitySets/write","localizedValue":"Create + or Update Availability Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:25.4815481Z","submissionTimestamp":"2019-04-30T01:36:44.0809413Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/av_set_deploy_Hqy0RpJRLy25aWsuKzFsc9Z1dm4YSTOa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"050afc5c-f2eb-4012-86d8-20000b15d6a6","description":"","eventDataId":"0076fe56-d21f-488d-9701-2faa7ccef251","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5b4e74c6-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/av_set_deploy_Hqy0RpJRLy25aWsuKzFsc9Z1dm4YSTOa/events/0076fe56-d21f-488d-9701-2faa7ccef251/ticks/636921849840605733","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/av_set_deploy_Hqy0RpJRLy25aWsuKzFsc9Z1dm4YSTOa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"050afc5c-f2eb-4012-86d8-20000b15d6a6","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:24.0605733Z","submissionTimestamp":"2019-04-30T01:36:43.0865674Z","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_ppg_resources_000001/providers/Microsoft.Resources/deployments/av_set_deploy_Hqy0RpJRLy25aWsuKzFsc9Z1dm4YSTOa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587681","nbf":"1556587681","exp":"1556591581","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX84NRe8bG+q4A/DCKepOqOTLSf32yMdmNRfVIORhB06uRnl81c3Q0U944jyklZx+PF0cNRrjjDJwKTFIeR1YDMBWofSWFGOVVUALUXFPi7U=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.147.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"GTysIOW6QUmDnxyIfcsAAA","ver":"1.0"},"correlationId":"050afc5c-f2eb-4012-86d8-20000b15d6a6","description":"","eventDataId":"1d36ec8c-cde6-44f1-a9a1-7a340a4fca96","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5b4e74c6-6ae8-11e9-9942-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/av_set_deploy_Hqy0RpJRLy25aWsuKzFsc9Z1dm4YSTOa/events/1d36ec8c-cde6-44f1-a9a1-7a340a4fca96/ticks/636921849817552678","level":"Informational","resourceGroupName":"cli_test_ppg_resources_000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/av_set_deploy_Hqy0RpJRLy25aWsuKzFsc9Z1dm4YSTOa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"050afc5c-f2eb-4012-86d8-20000b15d6a6","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:21.7552678Z","submissionTimestamp":"2019-04-30T01:36:43.0865674Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '14906' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm availability-set create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450187021745560?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: + - Tue, 30 Apr 2019 01:36: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: + - vm availability-set create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Resources/deployments/av_set_deploy_Hqy0RpJRLy25aWsuKzFsc9Z1dm4YSTOa","name":"av_set_deploy_Hqy0RpJRLy25aWsuKzFsc9Z1dm4YSTOa","properties":{"templateHash":"11150200459473154335","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:36:29.4318249Z","duration":"PT6.1287728S","correlationId":"050afc5c-f2eb-4012-86d8-20000b15d6a6","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/availabilitySets/avset1"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '922' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36: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: + - vm availability-set create + Connection: + - keep-alive + ParameterSetName: + - -g -n --ppg + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/availabilitySets/avset1?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\ + \n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": [],\r\n\ + \ \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\ + \r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\ + \n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/availabilitySets/avset1\"\ + ,\r\n \"name\": \"avset1\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\ + \n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '748' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36:55 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;3990,Microsoft.Compute/LowCostGet30Min;31975 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ppg show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"\ + Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/virtualMachines/VM1\"\ + \r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [\r\n {\r\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\ + \r\n }\r\n ],\r\n \"availabilitySets\": [\r\n {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_RESOURCES_JLCT7VOI2ZFWLFTF2BE67QGYJOTTHNMSWQRY32IOP4LGZSALNOKV/providers/Microsoft.Compute/availabilitySets/AVSET1\"\ + \r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\"\ + ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_resources_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\ + ,\r\n \"name\": \"my_ppg_1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1215' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:36:55 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;31974 + 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' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_resources_000001?api-version=2018-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 30 Apr 2019 01:36:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUFBHOjVGUkVTT1VSQ0VTOjVGSkxDVDdWT0kyWkZXTEZURnw1MzA2OUJGNjU1NjQ5MEI5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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_proximity_placement_group.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_proximity_placement_group.yaml new file mode 100644 index 00000000000..4a7447bc106 --- /dev/null +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_proximity_placement_group.yaml @@ -0,0 +1,305 @@ +interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-04-24T04:22:34Z"}}' + 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.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-24T04:22:34Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Apr 2019 04:22:36 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: + - ppg create + Connection: + - keep-alive + ParameterSetName: + - -n -t -g + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-24T04:22:34Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Apr 2019 04:22:41 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: '{"location": "westus", "tags": {}, "properties": {"proximityPlacementGroupType": + "Standard"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ppg create + Connection: + - keep-alive + Content-Length: + - '93' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -t -g + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"\ + Standard\"\r\n },\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\"\ + ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\ + ,\r\n \"name\": \"my_ppg_1\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '412' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Apr 2019 04:22:37 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-resource: + - Microsoft.Compute/PutDeletePPG3Min;96,Microsoft.Compute/PutDeletePPG30Min;491 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ppg create + Connection: + - keep-alive + ParameterSetName: + - -n -t -g + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-24T04:22:34Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Apr 2019 04:22:50 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: '{"location": "westus", "tags": {}, "properties": {"proximityPlacementGroupType": + "Ultra"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ppg create + Connection: + - keep-alive + Content-Length: + - '90' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -t -g + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"\ + Ultra\"\r\n },\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\"\ + ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2\"\ + ,\r\n \"name\": \"my_ppg_2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '409' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Apr 2019 04:22:39 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-resource: + - Microsoft.Compute/PutDeletePPG3Min;95,Microsoft.Compute/PutDeletePPG30Min;490 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2018-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 24 Apr 2019 04:22:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGUFBHOjVGQ01EUzo1RjdRNVU0WEFSRlhDQlFCQzJMVjQ3N3w4NERFREMzQUNFNTA0NTQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?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_vm_capture_zone_resilient_image.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_capture_zone_resilient_image.yaml index a3fc467e76c..44c5123508c 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_capture_zone_resilient_image.yaml +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_capture_zone_resilient_image.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-04-16T21:16:57Z"}}' + "date": "2019-04-30T01:07:35Z"}}' headers: Accept: - application/json @@ -18,15 +18,15 @@ interactions: ParameterSetName: - --location --name --tag User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001","name":"cli_test_generalize_vm000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:16:57Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001","name":"cli_test_generalize_vm000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -35,7 +35,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:16:59 GMT + - Tue, 30 Apr 2019 01:07:38 GMT expires: - '-1' pragma: @@ -118,13 +118,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 16 Apr 2019 21:17:00 GMT + - Tue, 30 Apr 2019 01:07:40 GMT etag: - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' expires: - - Tue, 16 Apr 2019 21:22:00 GMT + - Tue, 30 Apr 2019 01:12:40 GMT source-age: - - '8' + - '204' strict-transport-security: - max-age=31536000 vary: @@ -138,17 +138,17 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - b04fe652aed260c2fc289f8f50002b262e2209b7 + - 10664a4b7f5fe9c0a8b68d111fd9a5f4c3401a20 x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - DB14:1210:1ECAA8:227CE9:5CB64643 + - E152:0E13:84575:9A924:5CC79F0E x-served-by: - - cache-dfw18642-DFW + - cache-dfw18648-DFW x-timer: - - S1555449421.598783,VS0,VE1 + - S1556586460.261240,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -168,8 +168,8 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -185,7 +185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:17:01 GMT + - Tue, 30 Apr 2019 01:07:41 GMT expires: - '-1' pragma: @@ -248,18 +248,18 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","name":"vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","properties":{"templateHash":"1633859173946508270","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:17:04.6025089Z","duration":"PT1.5253448S","correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["francecentral"]},{"resourceType":"networkSecurityGroups","locations":["francecentral"]},{"resourceType":"publicIPAddresses","locations":["francecentral"]},{"resourceType":"networkInterfaces","locations":["francecentral"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["francecentral"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm-generalizeVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-generalizeNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-generalizePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-generalize"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","name":"vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","properties":{"templateHash":"3713432456021048947","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:07:44.9549493Z","duration":"PT1.6145567S","correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["francecentral"]},{"resourceType":"networkSecurityGroups","locations":["francecentral"]},{"resourceType":"publicIPAddresses","locations":["francecentral"]},{"resourceType":"networkInterfaces","locations":["francecentral"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["francecentral"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm-generalizeVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-generalizeNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-generalizePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-generalize"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/operationStatuses/08586461574624004626?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/operationStatuses/08586450204221372326?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -267,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:17:04 GMT + - Tue, 30 Apr 2019 01:07:44 GMT expires: - '-1' pragma: @@ -297,12 +297,12 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A17%3A10Z%20and%20correlationId%20eq%20%273a33e688-fec2-4161-8b59-81a793a89a5c%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A07%3A51Z%20and%20correlationId%20eq%20%27438a3d5e-3266-48ed-bd2c-ea5d7c6ce004%27 response: body: string: '{"value":[]}' @@ -314,7 +314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:17:11 GMT + - Tue, 30 Apr 2019 01:07:50 GMT expires: - '-1' pragma: @@ -348,12 +348,12 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A17%3A21Z%20and%20correlationId%20eq%20%273a33e688-fec2-4161-8b59-81a793a89a5c%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A01Z%20and%20correlationId%20eq%20%27438a3d5e-3266-48ed-bd2c-ea5d7c6ce004%27 response: body: string: '{"value":[]}' @@ -365,7 +365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:17:22 GMT + - Tue, 30 Apr 2019 01:08:01 GMT expires: - '-1' pragma: @@ -399,39 +399,67 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A17%3A31Z%20and%20correlationId%20eq%20%273a33e688-fec2-4161-8b59-81a793a89a5c%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A12Z%20and%20correlationId%20eq%20%27438a3d5e-3266-48ed-bd2c-ea5d7c6ce004%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5fdeb4d1-3ca0-4557-9e48-eba26551b9e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/5fdeb4d1-3ca0-4557-9e48-eba26551b9e7/ticks/636910462279768231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.9768231Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"32c39743-b6bc-45b2-bcf7-a775e43af1df","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/32c39743-b6bc-45b2-bcf7-a775e43af1df/ticks/636910462278868023","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.8868023Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc9dd405-f9bf-488f-83e0-c3b3e5ade193","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/dc9dd405-f9bf-488f-83e0-c3b3e5ade193/ticks/636910462248439178","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"27eb9d7f-626c-419a-861b-86f8cda3ceb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/27eb9d7f-626c-419a-861b-86f8cda3ceb8/ticks/636921832751787697","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"60f90b29-0986-4b68-a709-5c8d0803c719","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1787697Z","submissionTimestamp":"2019-04-30T01:08:10.5932792Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"94c617bc-9524-45ae-bd84-47599f41763d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/94c617bc-9524-45ae-bd84-47599f41763d/ticks/636921832685388797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11e02e02-0eb0-43a1-b8bb-dd98ac3b9960","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"84be5d5d-5362-4ff8-b148-15d1ce03cc9c\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.5388797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"0a7458b6-e0a5-4011-839e-b583005ee4c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/0a7458b6-e0a5-4011-839e-b583005ee4c7/ticks/636921832684688794","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"dd2a5db2-621c-44da-aaa8-8785a68458b2","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"b1c2b180-38d7-438b-b740-85a9bd218213\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"73a1829f-31e0-486f-8d53-23f6b03d7efe\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.4688794Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"24688a3d-e37e-4398-bcba-cd380f42472b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/24688a3d-e37e-4398-bcba-cd380f42472b/ticks/636921832684588797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.4588797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e281449b-ed12-4624-8742-67620946cffb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/e281449b-ed12-4624-8742-67620946cffb/ticks/636921832683889166","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.3889166Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"ed8c28ff-7d79-4392-bdc2-871de4ef5e05","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/ed8c28ff-7d79-4392-bdc2-871de4ef5e05/ticks/636921832683689191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8dd0614c-9f9c-4e4e-ba8c-6059cbda3c92","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3413489-1d2d-445f-903a-70f68d98e5ae\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.3689191Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4233dca8-efd9-4706-9570-5dc2be2f4143","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/4233dca8-efd9-4706-9570-5dc2be2f4143/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"865bea7a-e7da-4169-a0dc-0a97ab2625d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/865bea7a-e7da-4169-a0dc-0a97ab2625d3/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"aa7bb29c-3e94-46c9-964d-e8fe7e9d99df","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/aa7bb29c-3e94-46c9-964d-e8fe7e9d99df/ticks/636921832668489348","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8489348Z","submissionTimestamp":"2019-04-30T01:08:05.0786757Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"7efd8d28-468c-4379-9501-f2a99984731c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/7efd8d28-468c-4379-9501-f2a99984731c/ticks/636921832651556015","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:04.8439178Z","submissionTimestamp":"2019-04-16T21:17:29.0891672Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d25293a4-6d8f-40e5-93db-1f7572839983","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/d25293a4-6d8f-40e5-93db-1f7572839983/ticks/636910462212988907","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:01.2988907Z","submissionTimestamp":"2019-04-16T21:17:29.0881665Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.1556015Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"81fcfd38-f244-4435-b60c-a7c8bdef9b60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/81fcfd38-f244-4435-b60c-a7c8bdef9b60/ticks/636921832613205957","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.3205957Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '15473' + - '49031' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:17:32 GMT + - Tue, 30 Apr 2019 01:08:11 GMT expires: - '-1' pragma: @@ -463,10 +491,10 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461574624004626?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450204221372326?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -478,7 +506,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:17:34 GMT + - Tue, 30 Apr 2019 01:08:14 GMT expires: - '-1' pragma: @@ -508,50 +536,86 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A17%3A42Z%20and%20correlationId%20eq%20%273a33e688-fec2-4161-8b59-81a793a89a5c%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A22Z%20and%20correlationId%20eq%20%27438a3d5e-3266-48ed-bd2c-ea5d7c6ce004%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0/ticks/636910462372698292","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"38531311-a902-44f7-8d80-50f17d42e6bf","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:17.2698292Z","submissionTimestamp":"2019-04-16T21:17:39.1510368Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c973f9e1-8b44-4701-a23c-6414ffd011c3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/c973f9e1-8b44-4701-a23c-6414ffd011c3/ticks/636910462369985817","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"28fe73f8-64c0-4faf-8fad-8535abbe73c0","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.9985817Z","submissionTimestamp":"2019-04-16T21:17:34.1459296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"8f88a8af-8f7c-43ae-a642-e89d71fdd0b0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/8f88a8af-8f7c-43ae-a642-e89d71fdd0b0/ticks/636910462367304048","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"ab89294e-dc73-44ec-a049-1c2401faeb3a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.7304048Z","submissionTimestamp":"2019-04-16T21:17:36.0877054Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e86bb366-246c-44c7-b09b-8efaaa26a48c","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/e86bb366-246c-44c7-b09b-8efaaa26a48c/ticks/636910462351967590","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"statusCode":"Created","serviceRequestId":"f38807bb-f3d7-45bb-8e60-92e859a70296","responseBody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"etag\":\"W/\\\"84d4f502-f26f-4d14-9393-43ce50f2bdcb\\\"\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created"},"eventTimestamp":"2019-04-16T21:17:15.196759Z","submissionTimestamp":"2019-04-16T21:17:34.1546522Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d96223f7-888b-4acf-a591-240894e39b77","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/d96223f7-888b-4acf-a591-240894e39b77/ticks/636910462328466960","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"requestbody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:12.846696Z","submissionTimestamp":"2019-04-16T21:17:34.1536515Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"42f45088-9b9d-4413-b0e1-3ce4396a4128","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/42f45088-9b9d-4413-b0e1-3ce4396a4128/ticks/636910462307471352","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:10.7471352Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5fdeb4d1-3ca0-4557-9e48-eba26551b9e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/5fdeb4d1-3ca0-4557-9e48-eba26551b9e7/ticks/636910462279768231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.9768231Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"32c39743-b6bc-45b2-bcf7-a775e43af1df","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/32c39743-b6bc-45b2-bcf7-a775e43af1df/ticks/636910462278868023","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.8868023Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc9dd405-f9bf-488f-83e0-c3b3e5ade193","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/dc9dd405-f9bf-488f-83e0-c3b3e5ade193/ticks/636910462248439178","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"51fd2fd0-6c16-4c1c-9b33-76f940213d61","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/51fd2fd0-6c16-4c1c-9b33-76f940213d61/ticks/636921832781375048","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"8ecc5386-6bd9-48ee-b416-97945d339a8b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-30T01:07:58.1375048Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e84fc0d1-396f-44cf-ac07-b2994070c6d1","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/e84fc0d1-396f-44cf-ac07-b2994070c6d1/ticks/636921832752969052","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2969052Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4b2bd14e-886d-4e00-be11-a194e37414c8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4b2bd14e-886d-4e00-be11-a194e37414c8/ticks/636921832752131550","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"288ef32f-7fa4-48f8-9846-7abef1df4f29"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:55.213155Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"27eb9d7f-626c-419a-861b-86f8cda3ceb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/27eb9d7f-626c-419a-861b-86f8cda3ceb8/ticks/636921832751787697","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"60f90b29-0986-4b68-a709-5c8d0803c719","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1787697Z","submissionTimestamp":"2019-04-30T01:08:10.5932792Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"03690a37-900d-4b71-a56d-1c009c48be2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/03690a37-900d-4b71-a56d-1c009c48be2e/ticks/636921832751331554","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1331554Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"af9f7c9a-7829-4399-9737-d9cca0e6964e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/af9f7c9a-7829-4399-9737-d9cca0e6964e/ticks/636921832750971439","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b7e415ef-2839-4803-9ebf-269d8595b1d8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0971439Z","submissionTimestamp":"2019-04-30T01:08:14.0918401Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"88fbc709-fb90-40ab-869b-87e2a96dba2a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/88fbc709-fb90-40ab-869b-87e2a96dba2a/ticks/636921832735681995","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:53.5681995Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"bee8316c-908a-478d-bc4e-30027e7366e4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/bee8316c-908a-478d-bc4e-30027e7366e4/ticks/636921832733631948","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d8ad2175-d1a0-4766-9677-5c60a52d127d","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0f4db55-159e-4f24-92f0-891c715cfbaa\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:53.3631948Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"387b728e-917c-4334-9032-532d5cc56c57","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/387b728e-917c-4334-9032-532d5cc56c57/ticks/636921832725367718","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.5367718Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"94c617bc-9524-45ae-bd84-47599f41763d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/94c617bc-9524-45ae-bd84-47599f41763d/ticks/636921832685388797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11e02e02-0eb0-43a1-b8bb-dd98ac3b9960","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"84be5d5d-5362-4ff8-b148-15d1ce03cc9c\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.5388797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"0a7458b6-e0a5-4011-839e-b583005ee4c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/0a7458b6-e0a5-4011-839e-b583005ee4c7/ticks/636921832684688794","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"dd2a5db2-621c-44da-aaa8-8785a68458b2","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"b1c2b180-38d7-438b-b740-85a9bd218213\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"73a1829f-31e0-486f-8d53-23f6b03d7efe\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.4688794Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"24688a3d-e37e-4398-bcba-cd380f42472b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/24688a3d-e37e-4398-bcba-cd380f42472b/ticks/636921832684588797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.4588797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e281449b-ed12-4624-8742-67620946cffb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/e281449b-ed12-4624-8742-67620946cffb/ticks/636921832683889166","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.3889166Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"ed8c28ff-7d79-4392-bdc2-871de4ef5e05","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/ed8c28ff-7d79-4392-bdc2-871de4ef5e05/ticks/636921832683689191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8dd0614c-9f9c-4e4e-ba8c-6059cbda3c92","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3413489-1d2d-445f-903a-70f68d98e5ae\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.3689191Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4233dca8-efd9-4706-9570-5dc2be2f4143","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/4233dca8-efd9-4706-9570-5dc2be2f4143/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"865bea7a-e7da-4169-a0dc-0a97ab2625d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/865bea7a-e7da-4169-a0dc-0a97ab2625d3/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"aa7bb29c-3e94-46c9-964d-e8fe7e9d99df","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/aa7bb29c-3e94-46c9-964d-e8fe7e9d99df/ticks/636921832668489348","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8489348Z","submissionTimestamp":"2019-04-30T01:08:05.0786757Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"7efd8d28-468c-4379-9501-f2a99984731c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/7efd8d28-468c-4379-9501-f2a99984731c/ticks/636921832651556015","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:04.8439178Z","submissionTimestamp":"2019-04-16T21:17:29.0891672Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d25293a4-6d8f-40e5-93db-1f7572839983","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/d25293a4-6d8f-40e5-93db-1f7572839983/ticks/636910462212988907","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:01.2988907Z","submissionTimestamp":"2019-04-16T21:17:29.0881665Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.1556015Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"81fcfd38-f244-4435-b60c-a7c8bdef9b60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/81fcfd38-f244-4435-b60c-a7c8bdef9b60/ticks/636921832613205957","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.3205957Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '35908' + - '79738' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:17:42 GMT + - Tue, 30 Apr 2019 01:08:22 GMT expires: - '-1' pragma: @@ -585,82 +649,93 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A17%3A52Z%20and%20correlationId%20eq%20%273a33e688-fec2-4161-8b59-81a793a89a5c%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A32Z%20and%20correlationId%20eq%20%27438a3d5e-3266-48ed-bd2c-ea5d7c6ce004%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449142","nbf":"1555449142","exp":"1555478242","aio":"42ZgYDj9YWtiUr+CFx/Xvqkd/54WAgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"n1FMJqRGsUO2ur1N4iwvAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"938f5ac5-a30b-46a3-889a-2d3d92e3fb77","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f19aa518-2490-43fa-b934-3cf4d2f3a56a","clientIpAddress":"52.143.217.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5/events/938f5ac5-a30b-46a3-889a-2d3d92e3fb77/ticks/636910462449854535","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c5fc836f-76f4-45e8-a349-4cb34a552dc8","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"de7cc70b-fa1c-4e8a-b7dc-8dea647753b0"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-16T21:17:24.9854535Z","submissionTimestamp":"2019-04-16T21:17:47.144877Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"b7af00b1-20f9-4556-915c-d6a02a1928aa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7a7f8602-dfb7-4866-893b-998f8baa4872","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/b7af00b1-20f9-4556-915c-d6a02a1928aa/ticks/636910462427199115","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"340054f1-2d89-45cb-a9e4-c74785896c2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:22.7199115Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"11c59e09-cb2d-4bc0-8b53-443a8fc48af7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/11c59e09-cb2d-4bc0-8b53-443a8fc48af7/ticks/636910462425049024","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:22.5049024Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449142","nbf":"1555449142","exp":"1555478242","aio":"42ZgYDj9YWtiUr+CFx/Xvqkd/54WAgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"n1FMJqRGsUO2ur1N4iwvAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"54ce1e55-eda8-4d96-96b9-e6ed2db9d001","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f19aa518-2490-43fa-b934-3cf4d2f3a56a","clientIpAddress":"52.143.217.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5/events/54ce1e55-eda8-4d96-96b9-e6ed2db9d001/ticks/636910462421864116","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c5fc836f-76f4-45e8-a349-4cb34a552dc8","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:22.1864116Z","submissionTimestamp":"2019-04-16T21:17:47.144877Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"4a4c0211-a6b6-41f9-8988-a13e7b6863a2","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7a7f8602-dfb7-4866-893b-998f8baa4872","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4a4c0211-a6b6-41f9-8988-a13e7b6863a2/ticks/636910462397894979","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:19.7894979Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0/ticks/636910462372698292","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"38531311-a902-44f7-8d80-50f17d42e6bf","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:17.2698292Z","submissionTimestamp":"2019-04-16T21:17:39.1510368Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c973f9e1-8b44-4701-a23c-6414ffd011c3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/c973f9e1-8b44-4701-a23c-6414ffd011c3/ticks/636910462369985817","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"28fe73f8-64c0-4faf-8fad-8535abbe73c0","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.9985817Z","submissionTimestamp":"2019-04-16T21:17:34.1459296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"8f88a8af-8f7c-43ae-a642-e89d71fdd0b0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/8f88a8af-8f7c-43ae-a642-e89d71fdd0b0/ticks/636910462367304048","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"ab89294e-dc73-44ec-a049-1c2401faeb3a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.7304048Z","submissionTimestamp":"2019-04-16T21:17:36.0877054Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e86bb366-246c-44c7-b09b-8efaaa26a48c","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/e86bb366-246c-44c7-b09b-8efaaa26a48c/ticks/636910462351967590","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"statusCode":"Created","serviceRequestId":"f38807bb-f3d7-45bb-8e60-92e859a70296","responseBody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"etag\":\"W/\\\"84d4f502-f26f-4d14-9393-43ce50f2bdcb\\\"\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created"},"eventTimestamp":"2019-04-16T21:17:15.196759Z","submissionTimestamp":"2019-04-16T21:17:34.1546522Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d96223f7-888b-4acf-a591-240894e39b77","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/d96223f7-888b-4acf-a591-240894e39b77/ticks/636910462328466960","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"requestbody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:12.846696Z","submissionTimestamp":"2019-04-16T21:17:34.1536515Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"7de7296f-80e3-4960-9b0d-56e5f654a235","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac3ed1b1-e626-4eb9-86ec-7815834a4697","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7de7296f-80e3-4960-9b0d-56e5f654a235/ticks/636910462316421327","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"016dc47b-97b7-43a6-8639-a3e8b0534a47","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"29b74110-87ee-4673-8e30-3d668065c751\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d6b7f7a0-b80a-49b9-973e-429f18edbbf6\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:11.6421327Z","submissionTimestamp":"2019-04-16T21:17:34.4232991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5d4ec2a1-77bf-4524-bc09-6f53dad4cc45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5d4ec2a1-77bf-4524-bc09-6f53dad4cc45/ticks/636910462314121316","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:11.4121316Z","submissionTimestamp":"2019-04-16T21:17:34.4232991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c1b713f7-6171-40ef-bca0-40cf19c3dc53","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/c1b713f7-6171-40ef-bca0-40cf19c3dc53/ticks/636910462309571315","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"9f281dfd-d7ca-41f6-898c-1db8f3ffda8f","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"4846a416-cdd1-4138-9b57-455cc10fc321\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"260dbdc0-09a5-486c-9a9d-285cc8030a46\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"4846a416-cdd1-4138-9b57-455cc10fc321\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:10.9571315Z","submissionTimestamp":"2019-04-16T21:17:34.3938486Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e74fe89d-fa59-4171-bc5d-66ed6e9c8ed9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/e74fe89d-fa59-4171-bc5d-66ed6e9c8ed9/ticks/636910462308922924","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a63e9c43-cab8-4af4-aa8e-e453a7066067","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39da608d-c749-4d8c-8b0c-be67f968e2a5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"2256c76f-1941-407b-9230-38808d9e9485","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/2256c76f-1941-407b-9230-38808d9e9485/ticks/636921832861186741","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"034e64ea-953c-496e-b5b4-771ee3314369","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.1186741Z","submissionTimestamp":"2019-04-30T01:08:29.073888Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"51fd2fd0-6c16-4c1c-9b33-76f940213d61","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/51fd2fd0-6c16-4c1c-9b33-76f940213d61/ticks/636921832781375048","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"8ecc5386-6bd9-48ee-b416-97945d339a8b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-30T01:07:58.1375048Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"546a9622-9007-4218-90a7-256d7521788a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/546a9622-9007-4218-90a7-256d7521788a/ticks/636921832759061311","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cbbc1816-eca5-4964-8353-e67d432c2c12","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9061311Z","submissionTimestamp":"2019-04-30T01:08:13.1631717Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e84fc0d1-396f-44cf-ac07-b2994070c6d1","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/e84fc0d1-396f-44cf-ac07-b2994070c6d1/ticks/636921832752969052","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2969052Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4b2bd14e-886d-4e00-be11-a194e37414c8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4b2bd14e-886d-4e00-be11-a194e37414c8/ticks/636921832752131550","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"288ef32f-7fa4-48f8-9846-7abef1df4f29"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:55.213155Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"27eb9d7f-626c-419a-861b-86f8cda3ceb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/27eb9d7f-626c-419a-861b-86f8cda3ceb8/ticks/636921832751787697","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"60f90b29-0986-4b68-a709-5c8d0803c719","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1787697Z","submissionTimestamp":"2019-04-30T01:08:10.5932792Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"03690a37-900d-4b71-a56d-1c009c48be2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/03690a37-900d-4b71-a56d-1c009c48be2e/ticks/636921832751331554","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1331554Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"af9f7c9a-7829-4399-9737-d9cca0e6964e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/af9f7c9a-7829-4399-9737-d9cca0e6964e/ticks/636921832750971439","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b7e415ef-2839-4803-9ebf-269d8595b1d8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0971439Z","submissionTimestamp":"2019-04-30T01:08:14.0918401Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"88fbc709-fb90-40ab-869b-87e2a96dba2a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/88fbc709-fb90-40ab-869b-87e2a96dba2a/ticks/636921832735681995","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:53.5681995Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"bee8316c-908a-478d-bc4e-30027e7366e4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/bee8316c-908a-478d-bc4e-30027e7366e4/ticks/636921832733631948","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d8ad2175-d1a0-4766-9677-5c60a52d127d","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0f4db55-159e-4f24-92f0-891c715cfbaa\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:53.3631948Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"387b728e-917c-4334-9032-532d5cc56c57","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/387b728e-917c-4334-9032-532d5cc56c57/ticks/636921832725367718","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.5367718Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"94c617bc-9524-45ae-bd84-47599f41763d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/94c617bc-9524-45ae-bd84-47599f41763d/ticks/636921832685388797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11e02e02-0eb0-43a1-b8bb-dd98ac3b9960","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"84be5d5d-5362-4ff8-b148-15d1ce03cc9c\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.5388797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"0a7458b6-e0a5-4011-839e-b583005ee4c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/0a7458b6-e0a5-4011-839e-b583005ee4c7/ticks/636921832684688794","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"dd2a5db2-621c-44da-aaa8-8785a68458b2","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"b1c2b180-38d7-438b-b740-85a9bd218213\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"73a1829f-31e0-486f-8d53-23f6b03d7efe\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.4688794Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"24688a3d-e37e-4398-bcba-cd380f42472b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/24688a3d-e37e-4398-bcba-cd380f42472b/ticks/636921832684588797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.4588797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e281449b-ed12-4624-8742-67620946cffb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/e281449b-ed12-4624-8742-67620946cffb/ticks/636921832683889166","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.3889166Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"ed8c28ff-7d79-4392-bdc2-871de4ef5e05","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/ed8c28ff-7d79-4392-bdc2-871de4ef5e05/ticks/636921832683689191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8dd0614c-9f9c-4e4e-ba8c-6059cbda3c92","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3413489-1d2d-445f-903a-70f68d98e5ae\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:10.8922924Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"42f45088-9b9d-4413-b0e1-3ce4396a4128","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/42f45088-9b9d-4413-b0e1-3ce4396a4128/ticks/636910462307471352","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:10.7471352Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"49e1dba4-1035-424f-b9c0-02c7d0ed94ec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac3ed1b1-e626-4eb9-86ec-7815834a4697","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/49e1dba4-1035-424f-b9c0-02c7d0ed94ec/ticks/636910462280118143","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:08.0118143Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5fdeb4d1-3ca0-4557-9e48-eba26551b9e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/5fdeb4d1-3ca0-4557-9e48-eba26551b9e7/ticks/636910462279768231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.9768231Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"32c39743-b6bc-45b2-bcf7-a775e43af1df","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/32c39743-b6bc-45b2-bcf7-a775e43af1df/ticks/636910462278868023","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.8868023Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc9dd405-f9bf-488f-83e0-c3b3e5ade193","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/dc9dd405-f9bf-488f-83e0-c3b3e5ade193/ticks/636910462248439178","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.3689191Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4233dca8-efd9-4706-9570-5dc2be2f4143","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/4233dca8-efd9-4706-9570-5dc2be2f4143/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"865bea7a-e7da-4169-a0dc-0a97ab2625d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/865bea7a-e7da-4169-a0dc-0a97ab2625d3/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"aa7bb29c-3e94-46c9-964d-e8fe7e9d99df","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/aa7bb29c-3e94-46c9-964d-e8fe7e9d99df/ticks/636921832668489348","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8489348Z","submissionTimestamp":"2019-04-30T01:08:05.0786757Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"7efd8d28-468c-4379-9501-f2a99984731c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/7efd8d28-468c-4379-9501-f2a99984731c/ticks/636921832651556015","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:04.8439178Z","submissionTimestamp":"2019-04-16T21:17:29.0891672Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d25293a4-6d8f-40e5-93db-1f7572839983","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/d25293a4-6d8f-40e5-93db-1f7572839983/ticks/636910462212988907","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:01.2988907Z","submissionTimestamp":"2019-04-16T21:17:29.0881665Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.1556015Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"81fcfd38-f244-4435-b60c-a7c8bdef9b60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/81fcfd38-f244-4435-b60c-a7c8bdef9b60/ticks/636921832613205957","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.3205957Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '79070' + - '86874' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:17:53 GMT + - Tue, 30 Apr 2019 01:08:32 GMT expires: - '-1' pragma: @@ -694,93 +769,93 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A18%3A02Z%20and%20correlationId%20eq%20%273a33e688-fec2-4161-8b59-81a793a89a5c%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A43Z%20and%20correlationId%20eq%20%27438a3d5e-3266-48ed-bd2c-ea5d7c6ce004%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"6273ef39-f4f5-48c7-bf31-abef7c7f6345","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/6273ef39-f4f5-48c7-bf31-abef7c7f6345/ticks/636910462546216937","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b9c315bb-d812-42fc-a402-e78669db8360","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"2256c76f-1941-407b-9230-38808d9e9485","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/2256c76f-1941-407b-9230-38808d9e9485/ticks/636921832861186741","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"034e64ea-953c-496e-b5b4-771ee3314369","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:34.6216937Z","submissionTimestamp":"2019-04-16T21:17:57.0965155Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449142","nbf":"1555449142","exp":"1555478242","aio":"42ZgYDj9YWtiUr+CFx/Xvqkd/54WAgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"n1FMJqRGsUO2ur1N4iwvAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"938f5ac5-a30b-46a3-889a-2d3d92e3fb77","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f19aa518-2490-43fa-b934-3cf4d2f3a56a","clientIpAddress":"52.143.217.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5/events/938f5ac5-a30b-46a3-889a-2d3d92e3fb77/ticks/636910462449854535","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c5fc836f-76f4-45e8-a349-4cb34a552dc8","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"de7cc70b-fa1c-4e8a-b7dc-8dea647753b0"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-16T21:17:24.9854535Z","submissionTimestamp":"2019-04-16T21:17:47.144877Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"b7af00b1-20f9-4556-915c-d6a02a1928aa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7a7f8602-dfb7-4866-893b-998f8baa4872","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/b7af00b1-20f9-4556-915c-d6a02a1928aa/ticks/636910462427199115","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"340054f1-2d89-45cb-a9e4-c74785896c2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:22.7199115Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"11c59e09-cb2d-4bc0-8b53-443a8fc48af7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/11c59e09-cb2d-4bc0-8b53-443a8fc48af7/ticks/636910462425049024","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:22.5049024Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449142","nbf":"1555449142","exp":"1555478242","aio":"42ZgYDj9YWtiUr+CFx/Xvqkd/54WAgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"n1FMJqRGsUO2ur1N4iwvAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"54ce1e55-eda8-4d96-96b9-e6ed2db9d001","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f19aa518-2490-43fa-b934-3cf4d2f3a56a","clientIpAddress":"52.143.217.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5/events/54ce1e55-eda8-4d96-96b9-e6ed2db9d001/ticks/636910462421864116","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c5fc836f-76f4-45e8-a349-4cb34a552dc8","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:22.1864116Z","submissionTimestamp":"2019-04-16T21:17:47.144877Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"4a4c0211-a6b6-41f9-8988-a13e7b6863a2","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7a7f8602-dfb7-4866-893b-998f8baa4872","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4a4c0211-a6b6-41f9-8988-a13e7b6863a2/ticks/636910462397894979","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:19.7894979Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"caa8a12d-0e77-4c6c-9a8e-81b5884376bd","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b126868e-062e-47ff-a5c5-adc41b4beecf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/caa8a12d-0e77-4c6c-9a8e-81b5884376bd/ticks/636910462386244748","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c6a64128-5714-46d9-8906-a6548a2cef84","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d9928197-3fbc-45e4-95ec-5398cf70fc25","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"beeef395-9126-4c6a-8f37-194070441ac8\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a6cf605c-d0fd-40f2-a6a1-4f72a07981a9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"beeef395-9126-4c6a-8f37-194070441ac8\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:18.6244748Z","submissionTimestamp":"2019-04-16T21:17:34.3684819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0/ticks/636910462372698292","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"38531311-a902-44f7-8d80-50f17d42e6bf","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:17.2698292Z","submissionTimestamp":"2019-04-16T21:17:39.1510368Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc0a942b-028b-4966-bd6c-b686c6e5d574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b126868e-062e-47ff-a5c5-adc41b4beecf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/dc0a942b-028b-4966-bd6c-b686c6e5d574/ticks/636910462370321582","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c6a64128-5714-46d9-8906-a6548a2cef84","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:17.0321582Z","submissionTimestamp":"2019-04-16T21:17:34.3684819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c973f9e1-8b44-4701-a23c-6414ffd011c3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/c973f9e1-8b44-4701-a23c-6414ffd011c3/ticks/636910462369985817","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"28fe73f8-64c0-4faf-8fad-8535abbe73c0","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.9985817Z","submissionTimestamp":"2019-04-16T21:17:34.1459296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"8f88a8af-8f7c-43ae-a642-e89d71fdd0b0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/8f88a8af-8f7c-43ae-a642-e89d71fdd0b0/ticks/636910462367304048","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"ab89294e-dc73-44ec-a049-1c2401faeb3a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.7304048Z","submissionTimestamp":"2019-04-16T21:17:36.0877054Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e86bb366-246c-44c7-b09b-8efaaa26a48c","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/e86bb366-246c-44c7-b09b-8efaaa26a48c/ticks/636910462351967590","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"statusCode":"Created","serviceRequestId":"f38807bb-f3d7-45bb-8e60-92e859a70296","responseBody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"etag\":\"W/\\\"84d4f502-f26f-4d14-9393-43ce50f2bdcb\\\"\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created"},"eventTimestamp":"2019-04-16T21:17:15.196759Z","submissionTimestamp":"2019-04-16T21:17:34.1546522Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d96223f7-888b-4acf-a591-240894e39b77","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/d96223f7-888b-4acf-a591-240894e39b77/ticks/636910462328466960","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"requestbody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:12.846696Z","submissionTimestamp":"2019-04-16T21:17:34.1536515Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"7de7296f-80e3-4960-9b0d-56e5f654a235","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac3ed1b1-e626-4eb9-86ec-7815834a4697","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7de7296f-80e3-4960-9b0d-56e5f654a235/ticks/636910462316421327","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"016dc47b-97b7-43a6-8639-a3e8b0534a47","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"29b74110-87ee-4673-8e30-3d668065c751\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d6b7f7a0-b80a-49b9-973e-429f18edbbf6\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:11.6421327Z","submissionTimestamp":"2019-04-16T21:17:34.4232991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5d4ec2a1-77bf-4524-bc09-6f53dad4cc45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5d4ec2a1-77bf-4524-bc09-6f53dad4cc45/ticks/636910462314121316","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:11.4121316Z","submissionTimestamp":"2019-04-16T21:17:34.4232991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c1b713f7-6171-40ef-bca0-40cf19c3dc53","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/c1b713f7-6171-40ef-bca0-40cf19c3dc53/ticks/636910462309571315","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"9f281dfd-d7ca-41f6-898c-1db8f3ffda8f","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"4846a416-cdd1-4138-9b57-455cc10fc321\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"260dbdc0-09a5-486c-9a9d-285cc8030a46\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"4846a416-cdd1-4138-9b57-455cc10fc321\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:10.9571315Z","submissionTimestamp":"2019-04-16T21:17:34.3938486Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e74fe89d-fa59-4171-bc5d-66ed6e9c8ed9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/e74fe89d-fa59-4171-bc5d-66ed6e9c8ed9/ticks/636910462308922924","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a63e9c43-cab8-4af4-aa8e-e453a7066067","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39da608d-c749-4d8c-8b0c-be67f968e2a5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.1186741Z","submissionTimestamp":"2019-04-30T01:08:29.073888Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"51fd2fd0-6c16-4c1c-9b33-76f940213d61","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/51fd2fd0-6c16-4c1c-9b33-76f940213d61/ticks/636921832781375048","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"8ecc5386-6bd9-48ee-b416-97945d339a8b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-30T01:07:58.1375048Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"546a9622-9007-4218-90a7-256d7521788a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/546a9622-9007-4218-90a7-256d7521788a/ticks/636921832759061311","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cbbc1816-eca5-4964-8353-e67d432c2c12","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9061311Z","submissionTimestamp":"2019-04-30T01:08:13.1631717Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e84fc0d1-396f-44cf-ac07-b2994070c6d1","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/e84fc0d1-396f-44cf-ac07-b2994070c6d1/ticks/636921832752969052","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2969052Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4b2bd14e-886d-4e00-be11-a194e37414c8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4b2bd14e-886d-4e00-be11-a194e37414c8/ticks/636921832752131550","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"288ef32f-7fa4-48f8-9846-7abef1df4f29"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:55.213155Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"27eb9d7f-626c-419a-861b-86f8cda3ceb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/27eb9d7f-626c-419a-861b-86f8cda3ceb8/ticks/636921832751787697","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"60f90b29-0986-4b68-a709-5c8d0803c719","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1787697Z","submissionTimestamp":"2019-04-30T01:08:10.5932792Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"03690a37-900d-4b71-a56d-1c009c48be2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/03690a37-900d-4b71-a56d-1c009c48be2e/ticks/636921832751331554","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1331554Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"af9f7c9a-7829-4399-9737-d9cca0e6964e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/af9f7c9a-7829-4399-9737-d9cca0e6964e/ticks/636921832750971439","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b7e415ef-2839-4803-9ebf-269d8595b1d8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0971439Z","submissionTimestamp":"2019-04-30T01:08:14.0918401Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"88fbc709-fb90-40ab-869b-87e2a96dba2a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/88fbc709-fb90-40ab-869b-87e2a96dba2a/ticks/636921832735681995","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:53.5681995Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"bee8316c-908a-478d-bc4e-30027e7366e4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/bee8316c-908a-478d-bc4e-30027e7366e4/ticks/636921832733631948","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d8ad2175-d1a0-4766-9677-5c60a52d127d","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0f4db55-159e-4f24-92f0-891c715cfbaa\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:53.3631948Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"387b728e-917c-4334-9032-532d5cc56c57","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/387b728e-917c-4334-9032-532d5cc56c57/ticks/636921832725367718","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.5367718Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"94c617bc-9524-45ae-bd84-47599f41763d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/94c617bc-9524-45ae-bd84-47599f41763d/ticks/636921832685388797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11e02e02-0eb0-43a1-b8bb-dd98ac3b9960","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"84be5d5d-5362-4ff8-b148-15d1ce03cc9c\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.5388797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"0a7458b6-e0a5-4011-839e-b583005ee4c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/0a7458b6-e0a5-4011-839e-b583005ee4c7/ticks/636921832684688794","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"dd2a5db2-621c-44da-aaa8-8785a68458b2","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"b1c2b180-38d7-438b-b740-85a9bd218213\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"73a1829f-31e0-486f-8d53-23f6b03d7efe\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.4688794Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"24688a3d-e37e-4398-bcba-cd380f42472b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/24688a3d-e37e-4398-bcba-cd380f42472b/ticks/636921832684588797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.4588797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e281449b-ed12-4624-8742-67620946cffb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/e281449b-ed12-4624-8742-67620946cffb/ticks/636921832683889166","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.3889166Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"ed8c28ff-7d79-4392-bdc2-871de4ef5e05","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/ed8c28ff-7d79-4392-bdc2-871de4ef5e05/ticks/636921832683689191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8dd0614c-9f9c-4e4e-ba8c-6059cbda3c92","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3413489-1d2d-445f-903a-70f68d98e5ae\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:10.8922924Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"42f45088-9b9d-4413-b0e1-3ce4396a4128","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/42f45088-9b9d-4413-b0e1-3ce4396a4128/ticks/636910462307471352","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:10.7471352Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"49e1dba4-1035-424f-b9c0-02c7d0ed94ec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac3ed1b1-e626-4eb9-86ec-7815834a4697","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/49e1dba4-1035-424f-b9c0-02c7d0ed94ec/ticks/636910462280118143","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:08.0118143Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5fdeb4d1-3ca0-4557-9e48-eba26551b9e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/5fdeb4d1-3ca0-4557-9e48-eba26551b9e7/ticks/636910462279768231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.9768231Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"32c39743-b6bc-45b2-bcf7-a775e43af1df","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/32c39743-b6bc-45b2-bcf7-a775e43af1df/ticks/636910462278868023","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.8868023Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc9dd405-f9bf-488f-83e0-c3b3e5ade193","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/dc9dd405-f9bf-488f-83e0-c3b3e5ade193/ticks/636910462248439178","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.3689191Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4233dca8-efd9-4706-9570-5dc2be2f4143","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/4233dca8-efd9-4706-9570-5dc2be2f4143/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"865bea7a-e7da-4169-a0dc-0a97ab2625d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/865bea7a-e7da-4169-a0dc-0a97ab2625d3/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"aa7bb29c-3e94-46c9-964d-e8fe7e9d99df","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/aa7bb29c-3e94-46c9-964d-e8fe7e9d99df/ticks/636921832668489348","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8489348Z","submissionTimestamp":"2019-04-30T01:08:05.0786757Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"7efd8d28-468c-4379-9501-f2a99984731c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/7efd8d28-468c-4379-9501-f2a99984731c/ticks/636921832651556015","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:04.8439178Z","submissionTimestamp":"2019-04-16T21:17:29.0891672Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d25293a4-6d8f-40e5-93db-1f7572839983","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/d25293a4-6d8f-40e5-93db-1f7572839983/ticks/636910462212988907","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:01.2988907Z","submissionTimestamp":"2019-04-16T21:17:29.0881665Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.1556015Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"81fcfd38-f244-4435-b60c-a7c8bdef9b60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/81fcfd38-f244-4435-b60c-a7c8bdef9b60/ticks/636921832613205957","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.3205957Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '93070' + - '86874' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:03 GMT + - Tue, 30 Apr 2019 01:08:42 GMT expires: - '-1' pragma: @@ -812,10 +887,10 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461574624004626?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450204221372326?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -827,7 +902,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:05 GMT + - Tue, 30 Apr 2019 01:08:44 GMT expires: - '-1' pragma: @@ -857,93 +932,93 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A18%3A13Z%20and%20correlationId%20eq%20%273a33e688-fec2-4161-8b59-81a793a89a5c%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A53Z%20and%20correlationId%20eq%20%27438a3d5e-3266-48ed-bd2c-ea5d7c6ce004%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"6273ef39-f4f5-48c7-bf31-abef7c7f6345","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/6273ef39-f4f5-48c7-bf31-abef7c7f6345/ticks/636910462546216937","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b9c315bb-d812-42fc-a402-e78669db8360","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"2256c76f-1941-407b-9230-38808d9e9485","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/2256c76f-1941-407b-9230-38808d9e9485/ticks/636921832861186741","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"034e64ea-953c-496e-b5b4-771ee3314369","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:34.6216937Z","submissionTimestamp":"2019-04-16T21:17:57.0965155Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449142","nbf":"1555449142","exp":"1555478242","aio":"42ZgYDj9YWtiUr+CFx/Xvqkd/54WAgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"n1FMJqRGsUO2ur1N4iwvAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"938f5ac5-a30b-46a3-889a-2d3d92e3fb77","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f19aa518-2490-43fa-b934-3cf4d2f3a56a","clientIpAddress":"52.143.217.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5/events/938f5ac5-a30b-46a3-889a-2d3d92e3fb77/ticks/636910462449854535","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c5fc836f-76f4-45e8-a349-4cb34a552dc8","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"de7cc70b-fa1c-4e8a-b7dc-8dea647753b0"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-16T21:17:24.9854535Z","submissionTimestamp":"2019-04-16T21:17:47.144877Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"b7af00b1-20f9-4556-915c-d6a02a1928aa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7a7f8602-dfb7-4866-893b-998f8baa4872","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/b7af00b1-20f9-4556-915c-d6a02a1928aa/ticks/636910462427199115","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"340054f1-2d89-45cb-a9e4-c74785896c2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:22.7199115Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"11c59e09-cb2d-4bc0-8b53-443a8fc48af7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/11c59e09-cb2d-4bc0-8b53-443a8fc48af7/ticks/636910462425049024","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:22.5049024Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449142","nbf":"1555449142","exp":"1555478242","aio":"42ZgYDj9YWtiUr+CFx/Xvqkd/54WAgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"n1FMJqRGsUO2ur1N4iwvAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"54ce1e55-eda8-4d96-96b9-e6ed2db9d001","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f19aa518-2490-43fa-b934-3cf4d2f3a56a","clientIpAddress":"52.143.217.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5/events/54ce1e55-eda8-4d96-96b9-e6ed2db9d001/ticks/636910462421864116","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c5fc836f-76f4-45e8-a349-4cb34a552dc8","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:22.1864116Z","submissionTimestamp":"2019-04-16T21:17:47.144877Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"4a4c0211-a6b6-41f9-8988-a13e7b6863a2","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7a7f8602-dfb7-4866-893b-998f8baa4872","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4a4c0211-a6b6-41f9-8988-a13e7b6863a2/ticks/636910462397894979","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:19.7894979Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"caa8a12d-0e77-4c6c-9a8e-81b5884376bd","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b126868e-062e-47ff-a5c5-adc41b4beecf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/caa8a12d-0e77-4c6c-9a8e-81b5884376bd/ticks/636910462386244748","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c6a64128-5714-46d9-8906-a6548a2cef84","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d9928197-3fbc-45e4-95ec-5398cf70fc25","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"beeef395-9126-4c6a-8f37-194070441ac8\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a6cf605c-d0fd-40f2-a6a1-4f72a07981a9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"beeef395-9126-4c6a-8f37-194070441ac8\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:18.6244748Z","submissionTimestamp":"2019-04-16T21:17:34.3684819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0/ticks/636910462372698292","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"38531311-a902-44f7-8d80-50f17d42e6bf","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:17.2698292Z","submissionTimestamp":"2019-04-16T21:17:39.1510368Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc0a942b-028b-4966-bd6c-b686c6e5d574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b126868e-062e-47ff-a5c5-adc41b4beecf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/dc0a942b-028b-4966-bd6c-b686c6e5d574/ticks/636910462370321582","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c6a64128-5714-46d9-8906-a6548a2cef84","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:17.0321582Z","submissionTimestamp":"2019-04-16T21:17:34.3684819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c973f9e1-8b44-4701-a23c-6414ffd011c3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/c973f9e1-8b44-4701-a23c-6414ffd011c3/ticks/636910462369985817","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"28fe73f8-64c0-4faf-8fad-8535abbe73c0","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.9985817Z","submissionTimestamp":"2019-04-16T21:17:34.1459296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"8f88a8af-8f7c-43ae-a642-e89d71fdd0b0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/8f88a8af-8f7c-43ae-a642-e89d71fdd0b0/ticks/636910462367304048","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"ab89294e-dc73-44ec-a049-1c2401faeb3a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.7304048Z","submissionTimestamp":"2019-04-16T21:17:36.0877054Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e86bb366-246c-44c7-b09b-8efaaa26a48c","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/e86bb366-246c-44c7-b09b-8efaaa26a48c/ticks/636910462351967590","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"statusCode":"Created","serviceRequestId":"f38807bb-f3d7-45bb-8e60-92e859a70296","responseBody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"etag\":\"W/\\\"84d4f502-f26f-4d14-9393-43ce50f2bdcb\\\"\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created"},"eventTimestamp":"2019-04-16T21:17:15.196759Z","submissionTimestamp":"2019-04-16T21:17:34.1546522Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d96223f7-888b-4acf-a591-240894e39b77","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/d96223f7-888b-4acf-a591-240894e39b77/ticks/636910462328466960","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"requestbody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:12.846696Z","submissionTimestamp":"2019-04-16T21:17:34.1536515Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"7de7296f-80e3-4960-9b0d-56e5f654a235","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac3ed1b1-e626-4eb9-86ec-7815834a4697","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7de7296f-80e3-4960-9b0d-56e5f654a235/ticks/636910462316421327","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"016dc47b-97b7-43a6-8639-a3e8b0534a47","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"29b74110-87ee-4673-8e30-3d668065c751\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d6b7f7a0-b80a-49b9-973e-429f18edbbf6\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:11.6421327Z","submissionTimestamp":"2019-04-16T21:17:34.4232991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5d4ec2a1-77bf-4524-bc09-6f53dad4cc45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5d4ec2a1-77bf-4524-bc09-6f53dad4cc45/ticks/636910462314121316","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:11.4121316Z","submissionTimestamp":"2019-04-16T21:17:34.4232991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c1b713f7-6171-40ef-bca0-40cf19c3dc53","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/c1b713f7-6171-40ef-bca0-40cf19c3dc53/ticks/636910462309571315","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"9f281dfd-d7ca-41f6-898c-1db8f3ffda8f","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"4846a416-cdd1-4138-9b57-455cc10fc321\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"260dbdc0-09a5-486c-9a9d-285cc8030a46\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"4846a416-cdd1-4138-9b57-455cc10fc321\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:10.9571315Z","submissionTimestamp":"2019-04-16T21:17:34.3938486Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e74fe89d-fa59-4171-bc5d-66ed6e9c8ed9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/e74fe89d-fa59-4171-bc5d-66ed6e9c8ed9/ticks/636910462308922924","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a63e9c43-cab8-4af4-aa8e-e453a7066067","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39da608d-c749-4d8c-8b0c-be67f968e2a5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.1186741Z","submissionTimestamp":"2019-04-30T01:08:29.073888Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"51fd2fd0-6c16-4c1c-9b33-76f940213d61","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/51fd2fd0-6c16-4c1c-9b33-76f940213d61/ticks/636921832781375048","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"8ecc5386-6bd9-48ee-b416-97945d339a8b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-30T01:07:58.1375048Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"546a9622-9007-4218-90a7-256d7521788a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/546a9622-9007-4218-90a7-256d7521788a/ticks/636921832759061311","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cbbc1816-eca5-4964-8353-e67d432c2c12","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9061311Z","submissionTimestamp":"2019-04-30T01:08:13.1631717Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e84fc0d1-396f-44cf-ac07-b2994070c6d1","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/e84fc0d1-396f-44cf-ac07-b2994070c6d1/ticks/636921832752969052","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2969052Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4b2bd14e-886d-4e00-be11-a194e37414c8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4b2bd14e-886d-4e00-be11-a194e37414c8/ticks/636921832752131550","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"288ef32f-7fa4-48f8-9846-7abef1df4f29"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:55.213155Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"27eb9d7f-626c-419a-861b-86f8cda3ceb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/27eb9d7f-626c-419a-861b-86f8cda3ceb8/ticks/636921832751787697","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"60f90b29-0986-4b68-a709-5c8d0803c719","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1787697Z","submissionTimestamp":"2019-04-30T01:08:10.5932792Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"03690a37-900d-4b71-a56d-1c009c48be2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/03690a37-900d-4b71-a56d-1c009c48be2e/ticks/636921832751331554","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1331554Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"af9f7c9a-7829-4399-9737-d9cca0e6964e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/af9f7c9a-7829-4399-9737-d9cca0e6964e/ticks/636921832750971439","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b7e415ef-2839-4803-9ebf-269d8595b1d8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0971439Z","submissionTimestamp":"2019-04-30T01:08:14.0918401Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"88fbc709-fb90-40ab-869b-87e2a96dba2a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/88fbc709-fb90-40ab-869b-87e2a96dba2a/ticks/636921832735681995","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:53.5681995Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"bee8316c-908a-478d-bc4e-30027e7366e4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/bee8316c-908a-478d-bc4e-30027e7366e4/ticks/636921832733631948","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d8ad2175-d1a0-4766-9677-5c60a52d127d","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0f4db55-159e-4f24-92f0-891c715cfbaa\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:53.3631948Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"387b728e-917c-4334-9032-532d5cc56c57","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/387b728e-917c-4334-9032-532d5cc56c57/ticks/636921832725367718","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.5367718Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"94c617bc-9524-45ae-bd84-47599f41763d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/94c617bc-9524-45ae-bd84-47599f41763d/ticks/636921832685388797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11e02e02-0eb0-43a1-b8bb-dd98ac3b9960","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"84be5d5d-5362-4ff8-b148-15d1ce03cc9c\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.5388797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"0a7458b6-e0a5-4011-839e-b583005ee4c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/0a7458b6-e0a5-4011-839e-b583005ee4c7/ticks/636921832684688794","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"dd2a5db2-621c-44da-aaa8-8785a68458b2","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"b1c2b180-38d7-438b-b740-85a9bd218213\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"73a1829f-31e0-486f-8d53-23f6b03d7efe\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.4688794Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"24688a3d-e37e-4398-bcba-cd380f42472b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/24688a3d-e37e-4398-bcba-cd380f42472b/ticks/636921832684588797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.4588797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e281449b-ed12-4624-8742-67620946cffb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/e281449b-ed12-4624-8742-67620946cffb/ticks/636921832683889166","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.3889166Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"ed8c28ff-7d79-4392-bdc2-871de4ef5e05","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/ed8c28ff-7d79-4392-bdc2-871de4ef5e05/ticks/636921832683689191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8dd0614c-9f9c-4e4e-ba8c-6059cbda3c92","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3413489-1d2d-445f-903a-70f68d98e5ae\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:10.8922924Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"42f45088-9b9d-4413-b0e1-3ce4396a4128","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/42f45088-9b9d-4413-b0e1-3ce4396a4128/ticks/636910462307471352","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:10.7471352Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"49e1dba4-1035-424f-b9c0-02c7d0ed94ec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac3ed1b1-e626-4eb9-86ec-7815834a4697","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/49e1dba4-1035-424f-b9c0-02c7d0ed94ec/ticks/636910462280118143","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:08.0118143Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5fdeb4d1-3ca0-4557-9e48-eba26551b9e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/5fdeb4d1-3ca0-4557-9e48-eba26551b9e7/ticks/636910462279768231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.9768231Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"32c39743-b6bc-45b2-bcf7-a775e43af1df","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/32c39743-b6bc-45b2-bcf7-a775e43af1df/ticks/636910462278868023","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.8868023Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc9dd405-f9bf-488f-83e0-c3b3e5ade193","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/dc9dd405-f9bf-488f-83e0-c3b3e5ade193/ticks/636910462248439178","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.3689191Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4233dca8-efd9-4706-9570-5dc2be2f4143","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/4233dca8-efd9-4706-9570-5dc2be2f4143/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"865bea7a-e7da-4169-a0dc-0a97ab2625d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/865bea7a-e7da-4169-a0dc-0a97ab2625d3/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"aa7bb29c-3e94-46c9-964d-e8fe7e9d99df","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/aa7bb29c-3e94-46c9-964d-e8fe7e9d99df/ticks/636921832668489348","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8489348Z","submissionTimestamp":"2019-04-30T01:08:05.0786757Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"7efd8d28-468c-4379-9501-f2a99984731c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/7efd8d28-468c-4379-9501-f2a99984731c/ticks/636921832651556015","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:04.8439178Z","submissionTimestamp":"2019-04-16T21:17:29.0891672Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d25293a4-6d8f-40e5-93db-1f7572839983","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/d25293a4-6d8f-40e5-93db-1f7572839983/ticks/636910462212988907","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:01.2988907Z","submissionTimestamp":"2019-04-16T21:17:29.0881665Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.1556015Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"81fcfd38-f244-4435-b60c-a7c8bdef9b60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/81fcfd38-f244-4435-b60c-a7c8bdef9b60/ticks/636921832613205957","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.3205957Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '93070' + - '86874' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:14 GMT + - Tue, 30 Apr 2019 01:08:53 GMT expires: - '-1' pragma: @@ -977,93 +1052,97 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A18%3A23Z%20and%20correlationId%20eq%20%273a33e688-fec2-4161-8b59-81a793a89a5c%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A04Z%20and%20correlationId%20eq%20%27438a3d5e-3266-48ed-bd2c-ea5d7c6ce004%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"6273ef39-f4f5-48c7-bf31-abef7c7f6345","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/6273ef39-f4f5-48c7-bf31-abef7c7f6345/ticks/636910462546216937","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b9c315bb-d812-42fc-a402-e78669db8360","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"f53c9e55-ea16-4639-b556-1bcbf772b230","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f53c9e55-ea16-4639-b556-1bcbf772b230/ticks/636921833171355962","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"32fd87e6-3e60-41a5-ae6a-7f8fba2c85a9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:34.6216937Z","submissionTimestamp":"2019-04-16T21:17:57.0965155Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449142","nbf":"1555449142","exp":"1555478242","aio":"42ZgYDj9YWtiUr+CFx/Xvqkd/54WAgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"n1FMJqRGsUO2ur1N4iwvAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"938f5ac5-a30b-46a3-889a-2d3d92e3fb77","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f19aa518-2490-43fa-b934-3cf4d2f3a56a","clientIpAddress":"52.143.217.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5/events/938f5ac5-a30b-46a3-889a-2d3d92e3fb77/ticks/636910462449854535","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c5fc836f-76f4-45e8-a349-4cb34a552dc8","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"de7cc70b-fa1c-4e8a-b7dc-8dea647753b0"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-16T21:17:24.9854535Z","submissionTimestamp":"2019-04-16T21:17:47.144877Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"b7af00b1-20f9-4556-915c-d6a02a1928aa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7a7f8602-dfb7-4866-893b-998f8baa4872","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/b7af00b1-20f9-4556-915c-d6a02a1928aa/ticks/636910462427199115","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"340054f1-2d89-45cb-a9e4-c74785896c2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:22.7199115Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"11c59e09-cb2d-4bc0-8b53-443a8fc48af7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/11c59e09-cb2d-4bc0-8b53-443a8fc48af7/ticks/636910462425049024","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:22.5049024Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449142","nbf":"1555449142","exp":"1555478242","aio":"42ZgYDj9YWtiUr+CFx/Xvqkd/54WAgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"n1FMJqRGsUO2ur1N4iwvAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"54ce1e55-eda8-4d96-96b9-e6ed2db9d001","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f19aa518-2490-43fa-b934-3cf4d2f3a56a","clientIpAddress":"52.143.217.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5/events/54ce1e55-eda8-4d96-96b9-e6ed2db9d001/ticks/636910462421864116","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c5fc836f-76f4-45e8-a349-4cb34a552dc8","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:22.1864116Z","submissionTimestamp":"2019-04-16T21:17:47.144877Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"4a4c0211-a6b6-41f9-8988-a13e7b6863a2","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7a7f8602-dfb7-4866-893b-998f8baa4872","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4a4c0211-a6b6-41f9-8988-a13e7b6863a2/ticks/636910462397894979","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:19.7894979Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"caa8a12d-0e77-4c6c-9a8e-81b5884376bd","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b126868e-062e-47ff-a5c5-adc41b4beecf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/caa8a12d-0e77-4c6c-9a8e-81b5884376bd/ticks/636910462386244748","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c6a64128-5714-46d9-8906-a6548a2cef84","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d9928197-3fbc-45e4-95ec-5398cf70fc25","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"beeef395-9126-4c6a-8f37-194070441ac8\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a6cf605c-d0fd-40f2-a6a1-4f72a07981a9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"beeef395-9126-4c6a-8f37-194070441ac8\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:18.6244748Z","submissionTimestamp":"2019-04-16T21:17:34.3684819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0/ticks/636910462372698292","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"38531311-a902-44f7-8d80-50f17d42e6bf","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:17.2698292Z","submissionTimestamp":"2019-04-16T21:17:39.1510368Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc0a942b-028b-4966-bd6c-b686c6e5d574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b126868e-062e-47ff-a5c5-adc41b4beecf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/dc0a942b-028b-4966-bd6c-b686c6e5d574/ticks/636910462370321582","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c6a64128-5714-46d9-8906-a6548a2cef84","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:17.0321582Z","submissionTimestamp":"2019-04-16T21:17:34.3684819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c973f9e1-8b44-4701-a23c-6414ffd011c3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/c973f9e1-8b44-4701-a23c-6414ffd011c3/ticks/636910462369985817","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"28fe73f8-64c0-4faf-8fad-8535abbe73c0","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.9985817Z","submissionTimestamp":"2019-04-16T21:17:34.1459296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"8f88a8af-8f7c-43ae-a642-e89d71fdd0b0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/8f88a8af-8f7c-43ae-a642-e89d71fdd0b0/ticks/636910462367304048","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"ab89294e-dc73-44ec-a049-1c2401faeb3a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.7304048Z","submissionTimestamp":"2019-04-16T21:17:36.0877054Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e86bb366-246c-44c7-b09b-8efaaa26a48c","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/e86bb366-246c-44c7-b09b-8efaaa26a48c/ticks/636910462351967590","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"statusCode":"Created","serviceRequestId":"f38807bb-f3d7-45bb-8e60-92e859a70296","responseBody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"etag\":\"W/\\\"84d4f502-f26f-4d14-9393-43ce50f2bdcb\\\"\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created"},"eventTimestamp":"2019-04-16T21:17:15.196759Z","submissionTimestamp":"2019-04-16T21:17:34.1546522Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d96223f7-888b-4acf-a591-240894e39b77","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/d96223f7-888b-4acf-a591-240894e39b77/ticks/636910462328466960","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"requestbody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:12.846696Z","submissionTimestamp":"2019-04-16T21:17:34.1536515Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"7de7296f-80e3-4960-9b0d-56e5f654a235","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac3ed1b1-e626-4eb9-86ec-7815834a4697","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7de7296f-80e3-4960-9b0d-56e5f654a235/ticks/636910462316421327","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"016dc47b-97b7-43a6-8639-a3e8b0534a47","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"29b74110-87ee-4673-8e30-3d668065c751\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d6b7f7a0-b80a-49b9-973e-429f18edbbf6\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:11.6421327Z","submissionTimestamp":"2019-04-16T21:17:34.4232991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5d4ec2a1-77bf-4524-bc09-6f53dad4cc45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5d4ec2a1-77bf-4524-bc09-6f53dad4cc45/ticks/636910462314121316","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:11.4121316Z","submissionTimestamp":"2019-04-16T21:17:34.4232991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c1b713f7-6171-40ef-bca0-40cf19c3dc53","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/c1b713f7-6171-40ef-bca0-40cf19c3dc53/ticks/636910462309571315","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"9f281dfd-d7ca-41f6-898c-1db8f3ffda8f","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"4846a416-cdd1-4138-9b57-455cc10fc321\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"260dbdc0-09a5-486c-9a9d-285cc8030a46\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"4846a416-cdd1-4138-9b57-455cc10fc321\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:10.9571315Z","submissionTimestamp":"2019-04-16T21:17:34.3938486Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e74fe89d-fa59-4171-bc5d-66ed6e9c8ed9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/e74fe89d-fa59-4171-bc5d-66ed6e9c8ed9/ticks/636910462308922924","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a63e9c43-cab8-4af4-aa8e-e453a7066067","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39da608d-c749-4d8c-8b0c-be67f968e2a5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:37.1355962Z","submissionTimestamp":"2019-04-30T01:08:57.1190995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"2256c76f-1941-407b-9230-38808d9e9485","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/2256c76f-1941-407b-9230-38808d9e9485/ticks/636921832861186741","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"034e64ea-953c-496e-b5b4-771ee3314369","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.1186741Z","submissionTimestamp":"2019-04-30T01:08:29.073888Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"51fd2fd0-6c16-4c1c-9b33-76f940213d61","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/51fd2fd0-6c16-4c1c-9b33-76f940213d61/ticks/636921832781375048","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"8ecc5386-6bd9-48ee-b416-97945d339a8b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-30T01:07:58.1375048Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"546a9622-9007-4218-90a7-256d7521788a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/546a9622-9007-4218-90a7-256d7521788a/ticks/636921832759061311","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cbbc1816-eca5-4964-8353-e67d432c2c12","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9061311Z","submissionTimestamp":"2019-04-30T01:08:13.1631717Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e84fc0d1-396f-44cf-ac07-b2994070c6d1","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/e84fc0d1-396f-44cf-ac07-b2994070c6d1/ticks/636921832752969052","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2969052Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4b2bd14e-886d-4e00-be11-a194e37414c8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4b2bd14e-886d-4e00-be11-a194e37414c8/ticks/636921832752131550","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"288ef32f-7fa4-48f8-9846-7abef1df4f29"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:55.213155Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"27eb9d7f-626c-419a-861b-86f8cda3ceb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/27eb9d7f-626c-419a-861b-86f8cda3ceb8/ticks/636921832751787697","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"60f90b29-0986-4b68-a709-5c8d0803c719","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1787697Z","submissionTimestamp":"2019-04-30T01:08:10.5932792Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"03690a37-900d-4b71-a56d-1c009c48be2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/03690a37-900d-4b71-a56d-1c009c48be2e/ticks/636921832751331554","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1331554Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"af9f7c9a-7829-4399-9737-d9cca0e6964e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/af9f7c9a-7829-4399-9737-d9cca0e6964e/ticks/636921832750971439","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b7e415ef-2839-4803-9ebf-269d8595b1d8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0971439Z","submissionTimestamp":"2019-04-30T01:08:14.0918401Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"88fbc709-fb90-40ab-869b-87e2a96dba2a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/88fbc709-fb90-40ab-869b-87e2a96dba2a/ticks/636921832735681995","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:53.5681995Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"bee8316c-908a-478d-bc4e-30027e7366e4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/bee8316c-908a-478d-bc4e-30027e7366e4/ticks/636921832733631948","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d8ad2175-d1a0-4766-9677-5c60a52d127d","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0f4db55-159e-4f24-92f0-891c715cfbaa\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:53.3631948Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"387b728e-917c-4334-9032-532d5cc56c57","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/387b728e-917c-4334-9032-532d5cc56c57/ticks/636921832725367718","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.5367718Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"94c617bc-9524-45ae-bd84-47599f41763d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/94c617bc-9524-45ae-bd84-47599f41763d/ticks/636921832685388797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11e02e02-0eb0-43a1-b8bb-dd98ac3b9960","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"84be5d5d-5362-4ff8-b148-15d1ce03cc9c\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.5388797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"0a7458b6-e0a5-4011-839e-b583005ee4c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/0a7458b6-e0a5-4011-839e-b583005ee4c7/ticks/636921832684688794","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"dd2a5db2-621c-44da-aaa8-8785a68458b2","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"b1c2b180-38d7-438b-b740-85a9bd218213\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"73a1829f-31e0-486f-8d53-23f6b03d7efe\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.4688794Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"24688a3d-e37e-4398-bcba-cd380f42472b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/24688a3d-e37e-4398-bcba-cd380f42472b/ticks/636921832684588797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.4588797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e281449b-ed12-4624-8742-67620946cffb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/e281449b-ed12-4624-8742-67620946cffb/ticks/636921832683889166","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.3889166Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"ed8c28ff-7d79-4392-bdc2-871de4ef5e05","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/ed8c28ff-7d79-4392-bdc2-871de4ef5e05/ticks/636921832683689191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8dd0614c-9f9c-4e4e-ba8c-6059cbda3c92","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3413489-1d2d-445f-903a-70f68d98e5ae\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:10.8922924Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"42f45088-9b9d-4413-b0e1-3ce4396a4128","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/42f45088-9b9d-4413-b0e1-3ce4396a4128/ticks/636910462307471352","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:10.7471352Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"49e1dba4-1035-424f-b9c0-02c7d0ed94ec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac3ed1b1-e626-4eb9-86ec-7815834a4697","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/49e1dba4-1035-424f-b9c0-02c7d0ed94ec/ticks/636910462280118143","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:08.0118143Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5fdeb4d1-3ca0-4557-9e48-eba26551b9e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/5fdeb4d1-3ca0-4557-9e48-eba26551b9e7/ticks/636910462279768231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.9768231Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"32c39743-b6bc-45b2-bcf7-a775e43af1df","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/32c39743-b6bc-45b2-bcf7-a775e43af1df/ticks/636910462278868023","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.8868023Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc9dd405-f9bf-488f-83e0-c3b3e5ade193","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/dc9dd405-f9bf-488f-83e0-c3b3e5ade193/ticks/636910462248439178","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.3689191Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4233dca8-efd9-4706-9570-5dc2be2f4143","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/4233dca8-efd9-4706-9570-5dc2be2f4143/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"865bea7a-e7da-4169-a0dc-0a97ab2625d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/865bea7a-e7da-4169-a0dc-0a97ab2625d3/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"aa7bb29c-3e94-46c9-964d-e8fe7e9d99df","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/aa7bb29c-3e94-46c9-964d-e8fe7e9d99df/ticks/636921832668489348","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8489348Z","submissionTimestamp":"2019-04-30T01:08:05.0786757Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"7efd8d28-468c-4379-9501-f2a99984731c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/7efd8d28-468c-4379-9501-f2a99984731c/ticks/636921832651556015","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:04.8439178Z","submissionTimestamp":"2019-04-16T21:17:29.0891672Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d25293a4-6d8f-40e5-93db-1f7572839983","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/d25293a4-6d8f-40e5-93db-1f7572839983/ticks/636910462212988907","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:01.2988907Z","submissionTimestamp":"2019-04-16T21:17:29.0881665Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.1556015Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"81fcfd38-f244-4435-b60c-a7c8bdef9b60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/81fcfd38-f244-4435-b60c-a7c8bdef9b60/ticks/636921832613205957","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.3205957Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '93070' + - '90483' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:25 GMT + - Tue, 30 Apr 2019 01:09:04 GMT expires: - '-1' pragma: @@ -1092,13 +1171,141 @@ interactions: - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461574624004626?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A14Z%20and%20correlationId%20eq%20%27438a3d5e-3266-48ed-bd2c-ea5d7c6ce004%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"287d886a-d332-4d2c-849e-6a995f8ac6c9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/287d886a-d332-4d2c-849e-6a995f8ac6c9/ticks/636921833334804760","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e62cbfeb-33d3-44fb-8a0a-15e4bf57f347","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:53.480476Z","submissionTimestamp":"2019-04-30T01:09:11.0998962Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"f53c9e55-ea16-4639-b556-1bcbf772b230","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f53c9e55-ea16-4639-b556-1bcbf772b230/ticks/636921833171355962","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"32fd87e6-3e60-41a5-ae6a-7f8fba2c85a9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:37.1355962Z","submissionTimestamp":"2019-04-30T01:08:57.1190995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"2256c76f-1941-407b-9230-38808d9e9485","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/2256c76f-1941-407b-9230-38808d9e9485/ticks/636921832861186741","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"034e64ea-953c-496e-b5b4-771ee3314369","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.1186741Z","submissionTimestamp":"2019-04-30T01:08:29.073888Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"51fd2fd0-6c16-4c1c-9b33-76f940213d61","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/51fd2fd0-6c16-4c1c-9b33-76f940213d61/ticks/636921832781375048","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"8ecc5386-6bd9-48ee-b416-97945d339a8b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-30T01:07:58.1375048Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"546a9622-9007-4218-90a7-256d7521788a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/546a9622-9007-4218-90a7-256d7521788a/ticks/636921832759061311","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cbbc1816-eca5-4964-8353-e67d432c2c12","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9061311Z","submissionTimestamp":"2019-04-30T01:08:13.1631717Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e84fc0d1-396f-44cf-ac07-b2994070c6d1","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/e84fc0d1-396f-44cf-ac07-b2994070c6d1/ticks/636921832752969052","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2969052Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4b2bd14e-886d-4e00-be11-a194e37414c8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4b2bd14e-886d-4e00-be11-a194e37414c8/ticks/636921832752131550","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"288ef32f-7fa4-48f8-9846-7abef1df4f29"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:55.213155Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"27eb9d7f-626c-419a-861b-86f8cda3ceb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/27eb9d7f-626c-419a-861b-86f8cda3ceb8/ticks/636921832751787697","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"60f90b29-0986-4b68-a709-5c8d0803c719","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1787697Z","submissionTimestamp":"2019-04-30T01:08:10.5932792Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"03690a37-900d-4b71-a56d-1c009c48be2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/03690a37-900d-4b71-a56d-1c009c48be2e/ticks/636921832751331554","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1331554Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"af9f7c9a-7829-4399-9737-d9cca0e6964e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/af9f7c9a-7829-4399-9737-d9cca0e6964e/ticks/636921832750971439","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b7e415ef-2839-4803-9ebf-269d8595b1d8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0971439Z","submissionTimestamp":"2019-04-30T01:08:14.0918401Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"88fbc709-fb90-40ab-869b-87e2a96dba2a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/88fbc709-fb90-40ab-869b-87e2a96dba2a/ticks/636921832735681995","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:53.5681995Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"bee8316c-908a-478d-bc4e-30027e7366e4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/bee8316c-908a-478d-bc4e-30027e7366e4/ticks/636921832733631948","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d8ad2175-d1a0-4766-9677-5c60a52d127d","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0f4db55-159e-4f24-92f0-891c715cfbaa\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:53.3631948Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"387b728e-917c-4334-9032-532d5cc56c57","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/387b728e-917c-4334-9032-532d5cc56c57/ticks/636921832725367718","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.5367718Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"94c617bc-9524-45ae-bd84-47599f41763d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/94c617bc-9524-45ae-bd84-47599f41763d/ticks/636921832685388797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11e02e02-0eb0-43a1-b8bb-dd98ac3b9960","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"84be5d5d-5362-4ff8-b148-15d1ce03cc9c\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.5388797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"0a7458b6-e0a5-4011-839e-b583005ee4c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/0a7458b6-e0a5-4011-839e-b583005ee4c7/ticks/636921832684688794","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"dd2a5db2-621c-44da-aaa8-8785a68458b2","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"b1c2b180-38d7-438b-b740-85a9bd218213\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"73a1829f-31e0-486f-8d53-23f6b03d7efe\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.4688794Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"24688a3d-e37e-4398-bcba-cd380f42472b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/24688a3d-e37e-4398-bcba-cd380f42472b/ticks/636921832684588797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.4588797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e281449b-ed12-4624-8742-67620946cffb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/e281449b-ed12-4624-8742-67620946cffb/ticks/636921832683889166","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.3889166Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"ed8c28ff-7d79-4392-bdc2-871de4ef5e05","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/ed8c28ff-7d79-4392-bdc2-871de4ef5e05/ticks/636921832683689191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8dd0614c-9f9c-4e4e-ba8c-6059cbda3c92","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3413489-1d2d-445f-903a-70f68d98e5ae\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.3689191Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4233dca8-efd9-4706-9570-5dc2be2f4143","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/4233dca8-efd9-4706-9570-5dc2be2f4143/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"865bea7a-e7da-4169-a0dc-0a97ab2625d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/865bea7a-e7da-4169-a0dc-0a97ab2625d3/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"aa7bb29c-3e94-46c9-964d-e8fe7e9d99df","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/aa7bb29c-3e94-46c9-964d-e8fe7e9d99df/ticks/636921832668489348","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8489348Z","submissionTimestamp":"2019-04-30T01:08:05.0786757Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"7efd8d28-468c-4379-9501-f2a99984731c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/7efd8d28-468c-4379-9501-f2a99984731c/ticks/636921832651556015","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.1556015Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"81fcfd38-f244-4435-b60c-a7c8bdef9b60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/81fcfd38-f244-4435-b60c-a7c8bdef9b60/ticks/636921832613205957","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.3205957Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '94091' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:09:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g --location -n --admin-username --image --admin-password --authentication-type + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450204221372326?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1110,7 +1317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:35 GMT + - Tue, 30 Apr 2019 01:09:15 GMT expires: - '-1' pragma: @@ -1140,101 +1347,101 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A18%3A44Z%20and%20correlationId%20eq%20%273a33e688-fec2-4161-8b59-81a793a89a5c%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A24Z%20and%20correlationId%20eq%20%27438a3d5e-3266-48ed-bd2c-ea5d7c6ce004%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"58ccc4a0-61ec-4cc9-af52-c8d628fa5c8c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/58ccc4a0-61ec-4cc9-af52-c8d628fa5c8c/ticks/636910463020139255","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"239f87d3-58e8-49ef-b37c-adcd620fb6cb","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"287d886a-d332-4d2c-849e-6a995f8ac6c9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/287d886a-d332-4d2c-849e-6a995f8ac6c9/ticks/636921833334804760","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e62cbfeb-33d3-44fb-8a0a-15e4bf57f347","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:22.0139255Z","submissionTimestamp":"2019-04-16T21:18:40.1379079Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"ae82f6d0-cf73-4080-ac13-ae63f3fa72f2","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/ae82f6d0-cf73-4080-ac13-ae63f3fa72f2/ticks/636910462856233495","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91b6fe31-faeb-49be-80b8-683193af1900","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:53.480476Z","submissionTimestamp":"2019-04-30T01:09:11.0998962Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"f53c9e55-ea16-4639-b556-1bcbf772b230","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f53c9e55-ea16-4639-b556-1bcbf772b230/ticks/636921833171355962","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"32fd87e6-3e60-41a5-ae6a-7f8fba2c85a9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:05.6233495Z","submissionTimestamp":"2019-04-16T21:18:27.1282736Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"6273ef39-f4f5-48c7-bf31-abef7c7f6345","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/6273ef39-f4f5-48c7-bf31-abef7c7f6345/ticks/636910462546216937","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b9c315bb-d812-42fc-a402-e78669db8360","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:37.1355962Z","submissionTimestamp":"2019-04-30T01:08:57.1190995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"2256c76f-1941-407b-9230-38808d9e9485","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/2256c76f-1941-407b-9230-38808d9e9485/ticks/636921832861186741","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"034e64ea-953c-496e-b5b4-771ee3314369","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:34.6216937Z","submissionTimestamp":"2019-04-16T21:17:57.0965155Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449142","nbf":"1555449142","exp":"1555478242","aio":"42ZgYDj9YWtiUr+CFx/Xvqkd/54WAgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"n1FMJqRGsUO2ur1N4iwvAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"938f5ac5-a30b-46a3-889a-2d3d92e3fb77","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f19aa518-2490-43fa-b934-3cf4d2f3a56a","clientIpAddress":"52.143.217.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5/events/938f5ac5-a30b-46a3-889a-2d3d92e3fb77/ticks/636910462449854535","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c5fc836f-76f4-45e8-a349-4cb34a552dc8","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"de7cc70b-fa1c-4e8a-b7dc-8dea647753b0"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-16T21:17:24.9854535Z","submissionTimestamp":"2019-04-16T21:17:47.144877Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"b7af00b1-20f9-4556-915c-d6a02a1928aa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7a7f8602-dfb7-4866-893b-998f8baa4872","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/b7af00b1-20f9-4556-915c-d6a02a1928aa/ticks/636910462427199115","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"340054f1-2d89-45cb-a9e4-c74785896c2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:22.7199115Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"11c59e09-cb2d-4bc0-8b53-443a8fc48af7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/11c59e09-cb2d-4bc0-8b53-443a8fc48af7/ticks/636910462425049024","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:22.5049024Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449142","nbf":"1555449142","exp":"1555478242","aio":"42ZgYDj9YWtiUr+CFx/Xvqkd/54WAgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"n1FMJqRGsUO2ur1N4iwvAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"54ce1e55-eda8-4d96-96b9-e6ed2db9d001","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f19aa518-2490-43fa-b934-3cf4d2f3a56a","clientIpAddress":"52.143.217.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5/events/54ce1e55-eda8-4d96-96b9-e6ed2db9d001/ticks/636910462421864116","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c5fc836f-76f4-45e8-a349-4cb34a552dc8","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:22.1864116Z","submissionTimestamp":"2019-04-16T21:17:47.144877Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"4a4c0211-a6b6-41f9-8988-a13e7b6863a2","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7a7f8602-dfb7-4866-893b-998f8baa4872","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4a4c0211-a6b6-41f9-8988-a13e7b6863a2/ticks/636910462397894979","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:19.7894979Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"caa8a12d-0e77-4c6c-9a8e-81b5884376bd","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b126868e-062e-47ff-a5c5-adc41b4beecf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/caa8a12d-0e77-4c6c-9a8e-81b5884376bd/ticks/636910462386244748","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c6a64128-5714-46d9-8906-a6548a2cef84","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d9928197-3fbc-45e4-95ec-5398cf70fc25","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"beeef395-9126-4c6a-8f37-194070441ac8\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a6cf605c-d0fd-40f2-a6a1-4f72a07981a9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"beeef395-9126-4c6a-8f37-194070441ac8\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:18.6244748Z","submissionTimestamp":"2019-04-16T21:17:34.3684819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0/ticks/636910462372698292","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"38531311-a902-44f7-8d80-50f17d42e6bf","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:17.2698292Z","submissionTimestamp":"2019-04-16T21:17:39.1510368Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc0a942b-028b-4966-bd6c-b686c6e5d574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b126868e-062e-47ff-a5c5-adc41b4beecf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/dc0a942b-028b-4966-bd6c-b686c6e5d574/ticks/636910462370321582","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c6a64128-5714-46d9-8906-a6548a2cef84","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:17.0321582Z","submissionTimestamp":"2019-04-16T21:17:34.3684819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c973f9e1-8b44-4701-a23c-6414ffd011c3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/c973f9e1-8b44-4701-a23c-6414ffd011c3/ticks/636910462369985817","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"28fe73f8-64c0-4faf-8fad-8535abbe73c0","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.9985817Z","submissionTimestamp":"2019-04-16T21:17:34.1459296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"8f88a8af-8f7c-43ae-a642-e89d71fdd0b0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/8f88a8af-8f7c-43ae-a642-e89d71fdd0b0/ticks/636910462367304048","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"ab89294e-dc73-44ec-a049-1c2401faeb3a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.7304048Z","submissionTimestamp":"2019-04-16T21:17:36.0877054Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e86bb366-246c-44c7-b09b-8efaaa26a48c","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/e86bb366-246c-44c7-b09b-8efaaa26a48c/ticks/636910462351967590","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"statusCode":"Created","serviceRequestId":"f38807bb-f3d7-45bb-8e60-92e859a70296","responseBody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"etag\":\"W/\\\"84d4f502-f26f-4d14-9393-43ce50f2bdcb\\\"\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created"},"eventTimestamp":"2019-04-16T21:17:15.196759Z","submissionTimestamp":"2019-04-16T21:17:34.1546522Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d96223f7-888b-4acf-a591-240894e39b77","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/d96223f7-888b-4acf-a591-240894e39b77/ticks/636910462328466960","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"requestbody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:12.846696Z","submissionTimestamp":"2019-04-16T21:17:34.1536515Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"7de7296f-80e3-4960-9b0d-56e5f654a235","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac3ed1b1-e626-4eb9-86ec-7815834a4697","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7de7296f-80e3-4960-9b0d-56e5f654a235/ticks/636910462316421327","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"016dc47b-97b7-43a6-8639-a3e8b0534a47","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"29b74110-87ee-4673-8e30-3d668065c751\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d6b7f7a0-b80a-49b9-973e-429f18edbbf6\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:11.6421327Z","submissionTimestamp":"2019-04-16T21:17:34.4232991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5d4ec2a1-77bf-4524-bc09-6f53dad4cc45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5d4ec2a1-77bf-4524-bc09-6f53dad4cc45/ticks/636910462314121316","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:11.4121316Z","submissionTimestamp":"2019-04-16T21:17:34.4232991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c1b713f7-6171-40ef-bca0-40cf19c3dc53","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/c1b713f7-6171-40ef-bca0-40cf19c3dc53/ticks/636910462309571315","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"9f281dfd-d7ca-41f6-898c-1db8f3ffda8f","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"4846a416-cdd1-4138-9b57-455cc10fc321\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"260dbdc0-09a5-486c-9a9d-285cc8030a46\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"4846a416-cdd1-4138-9b57-455cc10fc321\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:10.9571315Z","submissionTimestamp":"2019-04-16T21:17:34.3938486Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e74fe89d-fa59-4171-bc5d-66ed6e9c8ed9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/e74fe89d-fa59-4171-bc5d-66ed6e9c8ed9/ticks/636910462308922924","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a63e9c43-cab8-4af4-aa8e-e453a7066067","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39da608d-c749-4d8c-8b0c-be67f968e2a5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.1186741Z","submissionTimestamp":"2019-04-30T01:08:29.073888Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"51fd2fd0-6c16-4c1c-9b33-76f940213d61","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/51fd2fd0-6c16-4c1c-9b33-76f940213d61/ticks/636921832781375048","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"8ecc5386-6bd9-48ee-b416-97945d339a8b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-30T01:07:58.1375048Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"546a9622-9007-4218-90a7-256d7521788a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/546a9622-9007-4218-90a7-256d7521788a/ticks/636921832759061311","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cbbc1816-eca5-4964-8353-e67d432c2c12","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9061311Z","submissionTimestamp":"2019-04-30T01:08:13.1631717Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e84fc0d1-396f-44cf-ac07-b2994070c6d1","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/e84fc0d1-396f-44cf-ac07-b2994070c6d1/ticks/636921832752969052","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2969052Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4b2bd14e-886d-4e00-be11-a194e37414c8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4b2bd14e-886d-4e00-be11-a194e37414c8/ticks/636921832752131550","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"288ef32f-7fa4-48f8-9846-7abef1df4f29"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:55.213155Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"27eb9d7f-626c-419a-861b-86f8cda3ceb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/27eb9d7f-626c-419a-861b-86f8cda3ceb8/ticks/636921832751787697","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"60f90b29-0986-4b68-a709-5c8d0803c719","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1787697Z","submissionTimestamp":"2019-04-30T01:08:10.5932792Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"03690a37-900d-4b71-a56d-1c009c48be2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/03690a37-900d-4b71-a56d-1c009c48be2e/ticks/636921832751331554","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1331554Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"af9f7c9a-7829-4399-9737-d9cca0e6964e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/af9f7c9a-7829-4399-9737-d9cca0e6964e/ticks/636921832750971439","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b7e415ef-2839-4803-9ebf-269d8595b1d8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0971439Z","submissionTimestamp":"2019-04-30T01:08:14.0918401Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"88fbc709-fb90-40ab-869b-87e2a96dba2a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/88fbc709-fb90-40ab-869b-87e2a96dba2a/ticks/636921832735681995","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:53.5681995Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"bee8316c-908a-478d-bc4e-30027e7366e4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/bee8316c-908a-478d-bc4e-30027e7366e4/ticks/636921832733631948","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d8ad2175-d1a0-4766-9677-5c60a52d127d","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0f4db55-159e-4f24-92f0-891c715cfbaa\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:53.3631948Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"387b728e-917c-4334-9032-532d5cc56c57","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/387b728e-917c-4334-9032-532d5cc56c57/ticks/636921832725367718","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.5367718Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"94c617bc-9524-45ae-bd84-47599f41763d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/94c617bc-9524-45ae-bd84-47599f41763d/ticks/636921832685388797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11e02e02-0eb0-43a1-b8bb-dd98ac3b9960","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"84be5d5d-5362-4ff8-b148-15d1ce03cc9c\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.5388797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"0a7458b6-e0a5-4011-839e-b583005ee4c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/0a7458b6-e0a5-4011-839e-b583005ee4c7/ticks/636921832684688794","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"dd2a5db2-621c-44da-aaa8-8785a68458b2","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"b1c2b180-38d7-438b-b740-85a9bd218213\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"73a1829f-31e0-486f-8d53-23f6b03d7efe\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.4688794Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"24688a3d-e37e-4398-bcba-cd380f42472b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/24688a3d-e37e-4398-bcba-cd380f42472b/ticks/636921832684588797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.4588797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e281449b-ed12-4624-8742-67620946cffb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/e281449b-ed12-4624-8742-67620946cffb/ticks/636921832683889166","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.3889166Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"ed8c28ff-7d79-4392-bdc2-871de4ef5e05","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/ed8c28ff-7d79-4392-bdc2-871de4ef5e05/ticks/636921832683689191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8dd0614c-9f9c-4e4e-ba8c-6059cbda3c92","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3413489-1d2d-445f-903a-70f68d98e5ae\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:10.8922924Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"42f45088-9b9d-4413-b0e1-3ce4396a4128","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/42f45088-9b9d-4413-b0e1-3ce4396a4128/ticks/636910462307471352","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:10.7471352Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"49e1dba4-1035-424f-b9c0-02c7d0ed94ec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac3ed1b1-e626-4eb9-86ec-7815834a4697","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/49e1dba4-1035-424f-b9c0-02c7d0ed94ec/ticks/636910462280118143","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:08.0118143Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5fdeb4d1-3ca0-4557-9e48-eba26551b9e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/5fdeb4d1-3ca0-4557-9e48-eba26551b9e7/ticks/636910462279768231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.9768231Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"32c39743-b6bc-45b2-bcf7-a775e43af1df","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/32c39743-b6bc-45b2-bcf7-a775e43af1df/ticks/636910462278868023","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.8868023Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc9dd405-f9bf-488f-83e0-c3b3e5ade193","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/dc9dd405-f9bf-488f-83e0-c3b3e5ade193/ticks/636910462248439178","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.3689191Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4233dca8-efd9-4706-9570-5dc2be2f4143","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/4233dca8-efd9-4706-9570-5dc2be2f4143/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"865bea7a-e7da-4169-a0dc-0a97ab2625d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/865bea7a-e7da-4169-a0dc-0a97ab2625d3/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"aa7bb29c-3e94-46c9-964d-e8fe7e9d99df","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/aa7bb29c-3e94-46c9-964d-e8fe7e9d99df/ticks/636921832668489348","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8489348Z","submissionTimestamp":"2019-04-30T01:08:05.0786757Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"7efd8d28-468c-4379-9501-f2a99984731c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/7efd8d28-468c-4379-9501-f2a99984731c/ticks/636921832651556015","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:04.8439178Z","submissionTimestamp":"2019-04-16T21:17:29.0891672Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d25293a4-6d8f-40e5-93db-1f7572839983","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/d25293a4-6d8f-40e5-93db-1f7572839983/ticks/636910462212988907","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:01.2988907Z","submissionTimestamp":"2019-04-16T21:17:29.0881665Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.1556015Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"81fcfd38-f244-4435-b60c-a7c8bdef9b60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/81fcfd38-f244-4435-b60c-a7c8bdef9b60/ticks/636921832613205957","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.3205957Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '100284' + - '94091' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:46 GMT + - Tue, 30 Apr 2019 01:09:24 GMT expires: - '-1' pragma: @@ -1268,101 +1475,101 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A18%3A55Z%20and%20correlationId%20eq%20%273a33e688-fec2-4161-8b59-81a793a89a5c%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A35Z%20and%20correlationId%20eq%20%27438a3d5e-3266-48ed-bd2c-ea5d7c6ce004%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"58ccc4a0-61ec-4cc9-af52-c8d628fa5c8c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/58ccc4a0-61ec-4cc9-af52-c8d628fa5c8c/ticks/636910463020139255","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"239f87d3-58e8-49ef-b37c-adcd620fb6cb","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"287d886a-d332-4d2c-849e-6a995f8ac6c9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/287d886a-d332-4d2c-849e-6a995f8ac6c9/ticks/636921833334804760","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e62cbfeb-33d3-44fb-8a0a-15e4bf57f347","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:22.0139255Z","submissionTimestamp":"2019-04-16T21:18:40.1379079Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"ae82f6d0-cf73-4080-ac13-ae63f3fa72f2","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/ae82f6d0-cf73-4080-ac13-ae63f3fa72f2/ticks/636910462856233495","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"91b6fe31-faeb-49be-80b8-683193af1900","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:53.480476Z","submissionTimestamp":"2019-04-30T01:09:11.0998962Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"f53c9e55-ea16-4639-b556-1bcbf772b230","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f53c9e55-ea16-4639-b556-1bcbf772b230/ticks/636921833171355962","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"32fd87e6-3e60-41a5-ae6a-7f8fba2c85a9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:05.6233495Z","submissionTimestamp":"2019-04-16T21:18:27.1282736Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"6273ef39-f4f5-48c7-bf31-abef7c7f6345","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/6273ef39-f4f5-48c7-bf31-abef7c7f6345/ticks/636910462546216937","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b9c315bb-d812-42fc-a402-e78669db8360","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:37.1355962Z","submissionTimestamp":"2019-04-30T01:08:57.1190995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"2256c76f-1941-407b-9230-38808d9e9485","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/2256c76f-1941-407b-9230-38808d9e9485/ticks/636921832861186741","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"034e64ea-953c-496e-b5b4-771ee3314369","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:34.6216937Z","submissionTimestamp":"2019-04-16T21:17:57.0965155Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449142","nbf":"1555449142","exp":"1555478242","aio":"42ZgYDj9YWtiUr+CFx/Xvqkd/54WAgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"n1FMJqRGsUO2ur1N4iwvAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"938f5ac5-a30b-46a3-889a-2d3d92e3fb77","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f19aa518-2490-43fa-b934-3cf4d2f3a56a","clientIpAddress":"52.143.217.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5/events/938f5ac5-a30b-46a3-889a-2d3d92e3fb77/ticks/636910462449854535","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c5fc836f-76f4-45e8-a349-4cb34a552dc8","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"de7cc70b-fa1c-4e8a-b7dc-8dea647753b0"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-16T21:17:24.9854535Z","submissionTimestamp":"2019-04-16T21:17:47.144877Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"b7af00b1-20f9-4556-915c-d6a02a1928aa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7a7f8602-dfb7-4866-893b-998f8baa4872","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/b7af00b1-20f9-4556-915c-d6a02a1928aa/ticks/636910462427199115","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"340054f1-2d89-45cb-a9e4-c74785896c2b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:22.7199115Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"11c59e09-cb2d-4bc0-8b53-443a8fc48af7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/11c59e09-cb2d-4bc0-8b53-443a8fc48af7/ticks/636910462425049024","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:22.5049024Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449142","nbf":"1555449142","exp":"1555478242","aio":"42ZgYDj9YWtiUr+CFx/Xvqkd/54WAgA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"n1FMJqRGsUO2ur1N4iwvAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"54ce1e55-eda8-4d96-96b9-e6ed2db9d001","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f19aa518-2490-43fa-b934-3cf4d2f3a56a","clientIpAddress":"52.143.217.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5/events/54ce1e55-eda8-4d96-96b9-e6ed2db9d001/ticks/636910462421864116","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VMNY5YWSNJN6WELBJCPUR6P3XMDZOUWVGWBDAYQYNM5UCYHPKDFC46T/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c5fc836f-76f4-45e8-a349-4cb34a552dc8","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:22.1864116Z","submissionTimestamp":"2019-04-16T21:17:47.144877Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"4a4c0211-a6b6-41f9-8988-a13e7b6863a2","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7a7f8602-dfb7-4866-893b-998f8baa4872","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4a4c0211-a6b6-41f9-8988-a13e7b6863a2/ticks/636910462397894979","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9698a040-085e-471f-aadf-d413a5ece174","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:19.7894979Z","submissionTimestamp":"2019-04-16T21:17:44.080684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"caa8a12d-0e77-4c6c-9a8e-81b5884376bd","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b126868e-062e-47ff-a5c5-adc41b4beecf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/caa8a12d-0e77-4c6c-9a8e-81b5884376bd/ticks/636910462386244748","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c6a64128-5714-46d9-8906-a6548a2cef84","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d9928197-3fbc-45e4-95ec-5398cf70fc25","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"beeef395-9126-4c6a-8f37-194070441ac8\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a6cf605c-d0fd-40f2-a6a1-4f72a07981a9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"beeef395-9126-4c6a-8f37-194070441ac8\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:18.6244748Z","submissionTimestamp":"2019-04-16T21:17:34.3684819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/6cb4c5d2-db67-4ea1-9b7c-dd31f97fb4a0/ticks/636910462372698292","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"38531311-a902-44f7-8d80-50f17d42e6bf","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:17.2698292Z","submissionTimestamp":"2019-04-16T21:17:39.1510368Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc0a942b-028b-4966-bd6c-b686c6e5d574","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b126868e-062e-47ff-a5c5-adc41b4beecf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/dc0a942b-028b-4966-bd6c-b686c6e5d574/ticks/636910462370321582","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"c6a64128-5714-46d9-8906-a6548a2cef84","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:17.0321582Z","submissionTimestamp":"2019-04-16T21:17:34.3684819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c973f9e1-8b44-4701-a23c-6414ffd011c3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/c973f9e1-8b44-4701-a23c-6414ffd011c3/ticks/636910462369985817","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"28fe73f8-64c0-4faf-8fad-8535abbe73c0","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.9985817Z","submissionTimestamp":"2019-04-16T21:17:34.1459296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"8f88a8af-8f7c-43ae-a642-e89d71fdd0b0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/8f88a8af-8f7c-43ae-a642-e89d71fdd0b0/ticks/636910462367304048","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"ab89294e-dc73-44ec-a049-1c2401faeb3a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:16.7304048Z","submissionTimestamp":"2019-04-16T21:17:36.0877054Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e86bb366-246c-44c7-b09b-8efaaa26a48c","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/e86bb366-246c-44c7-b09b-8efaaa26a48c/ticks/636910462351967590","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"statusCode":"Created","serviceRequestId":"f38807bb-f3d7-45bb-8e60-92e859a70296","responseBody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"etag\":\"W/\\\"84d4f502-f26f-4d14-9393-43ce50f2bdcb\\\"\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created"},"eventTimestamp":"2019-04-16T21:17:15.196759Z","submissionTimestamp":"2019-04-16T21:17:34.1546522Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkWatchers/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral"},"caller":"78662656-08a4-4072-933e-a90dc12af15d","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449132","nbf":"1555449132","exp":"1555478232","aio":"42ZgYPjMuf5Yj9bsFZbG2dWbW9dpAgA=","appid":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"78662656-08a4-4072-933e-a90dc12af15d","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"EwjA4FVMmEuKBNi2aLc2AA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d96223f7-888b-4acf-a591-240894e39b77","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"52.143.184.11","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral/events/d96223f7-888b-4acf-a591-240894e39b77/ticks/636910462328466960","level":"Informational","resourceGroupName":"NetworkWatcherRG","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral","resourceType":{"value":"Microsoft.Network/networkWatchers","localizedValue":"Microsoft.Network/networkWatchers"},"operationId":"6653d984-d1b9-49fc-baff-d8567dee674c","operationName":{"value":"Microsoft.Network/networkWatchers/write","localizedValue":"Microsoft.Network/networkWatchers/write"},"properties":{"requestbody":"{\"name\":\"NetworkWatcher_francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NetworkWatcherRG/providers/Microsoft.Network/networkWatchers/NetworkWatcher_francecentral\",\"type\":\"Microsoft.Network/networkWatchers\",\"location\":\"francecentral\",\"properties\":{\"provisioningState\":\"Succeeded\",\"flowLogs\":[],\"runningOperationIds\":[]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:12.846696Z","submissionTimestamp":"2019-04-16T21:17:34.1536515Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"7de7296f-80e3-4960-9b0d-56e5f654a235","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac3ed1b1-e626-4eb9-86ec-7815834a4697","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7de7296f-80e3-4960-9b0d-56e5f654a235/ticks/636910462316421327","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"016dc47b-97b7-43a6-8639-a3e8b0534a47","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"29b74110-87ee-4673-8e30-3d668065c751\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d6b7f7a0-b80a-49b9-973e-429f18edbbf6\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:11.6421327Z","submissionTimestamp":"2019-04-16T21:17:34.4232991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5d4ec2a1-77bf-4524-bc09-6f53dad4cc45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5d4ec2a1-77bf-4524-bc09-6f53dad4cc45/ticks/636910462314121316","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:11.4121316Z","submissionTimestamp":"2019-04-16T21:17:34.4232991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"c1b713f7-6171-40ef-bca0-40cf19c3dc53","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/c1b713f7-6171-40ef-bca0-40cf19c3dc53/ticks/636910462309571315","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"9f281dfd-d7ca-41f6-898c-1db8f3ffda8f","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"4846a416-cdd1-4138-9b57-455cc10fc321\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"260dbdc0-09a5-486c-9a9d-285cc8030a46\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"4846a416-cdd1-4138-9b57-455cc10fc321\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:10.9571315Z","submissionTimestamp":"2019-04-16T21:17:34.3938486Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"e74fe89d-fa59-4171-bc5d-66ed6e9c8ed9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/e74fe89d-fa59-4171-bc5d-66ed6e9c8ed9/ticks/636910462308922924","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a63e9c43-cab8-4af4-aa8e-e453a7066067","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39da608d-c749-4d8c-8b0c-be67f968e2a5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"1d05c585-fb67-443f-b409-31cee8750293\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.1186741Z","submissionTimestamp":"2019-04-30T01:08:29.073888Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"51fd2fd0-6c16-4c1c-9b33-76f940213d61","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/51fd2fd0-6c16-4c1c-9b33-76f940213d61/ticks/636921832781375048","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"8ecc5386-6bd9-48ee-b416-97945d339a8b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-30T01:07:58.1375048Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"546a9622-9007-4218-90a7-256d7521788a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/546a9622-9007-4218-90a7-256d7521788a/ticks/636921832759061311","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cbbc1816-eca5-4964-8353-e67d432c2c12","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9061311Z","submissionTimestamp":"2019-04-30T01:08:13.1631717Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e84fc0d1-396f-44cf-ac07-b2994070c6d1","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/e84fc0d1-396f-44cf-ac07-b2994070c6d1/ticks/636921832752969052","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2969052Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4b2bd14e-886d-4e00-be11-a194e37414c8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4b2bd14e-886d-4e00-be11-a194e37414c8/ticks/636921832752131550","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"288ef32f-7fa4-48f8-9846-7abef1df4f29"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:55.213155Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"27eb9d7f-626c-419a-861b-86f8cda3ceb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/27eb9d7f-626c-419a-861b-86f8cda3ceb8/ticks/636921832751787697","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"60f90b29-0986-4b68-a709-5c8d0803c719","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1787697Z","submissionTimestamp":"2019-04-30T01:08:10.5932792Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"03690a37-900d-4b71-a56d-1c009c48be2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/03690a37-900d-4b71-a56d-1c009c48be2e/ticks/636921832751331554","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1331554Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"af9f7c9a-7829-4399-9737-d9cca0e6964e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/af9f7c9a-7829-4399-9737-d9cca0e6964e/ticks/636921832750971439","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b7e415ef-2839-4803-9ebf-269d8595b1d8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0971439Z","submissionTimestamp":"2019-04-30T01:08:14.0918401Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"88fbc709-fb90-40ab-869b-87e2a96dba2a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/88fbc709-fb90-40ab-869b-87e2a96dba2a/ticks/636921832735681995","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:53.5681995Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"bee8316c-908a-478d-bc4e-30027e7366e4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/bee8316c-908a-478d-bc4e-30027e7366e4/ticks/636921832733631948","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d8ad2175-d1a0-4766-9677-5c60a52d127d","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0f4db55-159e-4f24-92f0-891c715cfbaa\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:53.3631948Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"387b728e-917c-4334-9032-532d5cc56c57","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/387b728e-917c-4334-9032-532d5cc56c57/ticks/636921832725367718","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.5367718Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"94c617bc-9524-45ae-bd84-47599f41763d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/94c617bc-9524-45ae-bd84-47599f41763d/ticks/636921832685388797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11e02e02-0eb0-43a1-b8bb-dd98ac3b9960","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"84be5d5d-5362-4ff8-b148-15d1ce03cc9c\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.5388797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"0a7458b6-e0a5-4011-839e-b583005ee4c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/0a7458b6-e0a5-4011-839e-b583005ee4c7/ticks/636921832684688794","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"dd2a5db2-621c-44da-aaa8-8785a68458b2","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"b1c2b180-38d7-438b-b740-85a9bd218213\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"73a1829f-31e0-486f-8d53-23f6b03d7efe\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.4688794Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"24688a3d-e37e-4398-bcba-cd380f42472b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/24688a3d-e37e-4398-bcba-cd380f42472b/ticks/636921832684588797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.4588797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e281449b-ed12-4624-8742-67620946cffb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/e281449b-ed12-4624-8742-67620946cffb/ticks/636921832683889166","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.3889166Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"ed8c28ff-7d79-4392-bdc2-871de4ef5e05","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/ed8c28ff-7d79-4392-bdc2-871de4ef5e05/ticks/636921832683689191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8dd0614c-9f9c-4e4e-ba8c-6059cbda3c92","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3413489-1d2d-445f-903a-70f68d98e5ae\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:10.8922924Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"42f45088-9b9d-4413-b0e1-3ce4396a4128","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/42f45088-9b9d-4413-b0e1-3ce4396a4128/ticks/636910462307471352","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:10.7471352Z","submissionTimestamp":"2019-04-16T21:17:34.3928475Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"49e1dba4-1035-424f-b9c0-02c7d0ed94ec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac3ed1b1-e626-4eb9-86ec-7815834a4697","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/49e1dba4-1035-424f-b9c0-02c7d0ed94ec/ticks/636910462280118143","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b1a73e86-1e05-4b88-bd6c-de1fef7254d6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:08.0118143Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"5fdeb4d1-3ca0-4557-9e48-eba26551b9e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d556b522-3ade-49fb-94c7-7c20a904ccba","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/5fdeb4d1-3ca0-4557-9e48-eba26551b9e7/ticks/636910462279768231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"4053a947-89a9-4fda-bbfe-7d77840ff90a","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.9768231Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"32c39743-b6bc-45b2-bcf7-a775e43af1df","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1289ffe3-ae7c-4ac0-864d-900748cfbc1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/32c39743-b6bc-45b2-bcf7-a775e43af1df/ticks/636910462278868023","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a7639aff-6379-47be-a327-f66dd0971e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:07.8868023Z","submissionTimestamp":"2019-04-16T21:17:24.1395789Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"dc9dd405-f9bf-488f-83e0-c3b3e5ade193","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/dc9dd405-f9bf-488f-83e0-c3b3e5ade193/ticks/636910462248439178","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.3689191Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4233dca8-efd9-4706-9570-5dc2be2f4143","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/4233dca8-efd9-4706-9570-5dc2be2f4143/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"865bea7a-e7da-4169-a0dc-0a97ab2625d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/865bea7a-e7da-4169-a0dc-0a97ab2625d3/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"aa7bb29c-3e94-46c9-964d-e8fe7e9d99df","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/aa7bb29c-3e94-46c9-964d-e8fe7e9d99df/ticks/636921832668489348","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8489348Z","submissionTimestamp":"2019-04-30T01:08:05.0786757Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"7efd8d28-468c-4379-9501-f2a99984731c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/7efd8d28-468c-4379-9501-f2a99984731c/ticks/636921832651556015","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:17:04.8439178Z","submissionTimestamp":"2019-04-16T21:17:29.0891672Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","description":"","eventDataId":"d25293a4-6d8f-40e5-93db-1f7572839983","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85a40d0-608c-11e9-b5bd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf/events/d25293a4-6d8f-40e5-93db-1f7572839983/ticks/636910462212988907","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:17:01.2988907Z","submissionTimestamp":"2019-04-16T21:17:29.0881665Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.1556015Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"81fcfd38-f244-4435-b60c-a7c8bdef9b60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/81fcfd38-f244-4435-b60c-a7c8bdef9b60/ticks/636921832613205957","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.3205957Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '100284' + - '94091' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:56 GMT + - Tue, 30 Apr 2019 01:09:34 GMT expires: - '-1' pragma: @@ -1391,13 +1598,152 @@ interactions: - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461574624004626?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A45Z%20and%20correlationId%20eq%20%27438a3d5e-3266-48ed-bd2c-ea5d7c6ce004%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"df173758-8bdf-48ad-b56e-45228a434e52","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/df173758-8bdf-48ad-b56e-45228a434e52/ticks/636921833589076433","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1570ee1f-e6e4-4da5-9ac1-b0762ce90669","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:18.9076433Z","submissionTimestamp":"2019-04-30T01:09:35.1545812Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"eac1106f-76eb-4663-b9c6-0623284ce6a5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/eac1106f-76eb-4663-b9c6-0623284ce6a5/ticks/636921833573686382","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"45639a7f-eb49-4bcb-acf5-42b4d27af385","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:17.3686382Z","submissionTimestamp":"2019-04-30T01:09:37.109175Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"a0ce6846-a74c-41c1-a812-5f2454d86c8e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/a0ce6846-a74c-41c1-a812-5f2454d86c8e/ticks/636921833508949360","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f47a73ac-1e01-479d-94db-bed811bde3e1","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:09:10.894936Z","submissionTimestamp":"2019-04-30T01:09:31.1534798Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"287d886a-d332-4d2c-849e-6a995f8ac6c9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/287d886a-d332-4d2c-849e-6a995f8ac6c9/ticks/636921833334804760","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e62cbfeb-33d3-44fb-8a0a-15e4bf57f347","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:53.480476Z","submissionTimestamp":"2019-04-30T01:09:11.0998962Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"f53c9e55-ea16-4639-b556-1bcbf772b230","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f53c9e55-ea16-4639-b556-1bcbf772b230/ticks/636921833171355962","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"32fd87e6-3e60-41a5-ae6a-7f8fba2c85a9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:37.1355962Z","submissionTimestamp":"2019-04-30T01:08:57.1190995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"2256c76f-1941-407b-9230-38808d9e9485","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/2256c76f-1941-407b-9230-38808d9e9485/ticks/636921832861186741","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"034e64ea-953c-496e-b5b4-771ee3314369","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.1186741Z","submissionTimestamp":"2019-04-30T01:08:29.073888Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"51fd2fd0-6c16-4c1c-9b33-76f940213d61","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/51fd2fd0-6c16-4c1c-9b33-76f940213d61/ticks/636921832781375048","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"properties":{"statusCode":"OK","serviceRequestId":"8ecc5386-6bd9-48ee-b416-97945d339a8b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK"},"eventTimestamp":"2019-04-30T01:07:58.1375048Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"546a9622-9007-4218-90a7-256d7521788a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/546a9622-9007-4218-90a7-256d7521788a/ticks/636921832759061311","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"cbbc1816-eca5-4964-8353-e67d432c2c12","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9061311Z","submissionTimestamp":"2019-04-30T01:08:13.1631717Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556569108","nbf":"1556569108","exp":"1556598208","aio":"42ZgYLgwQTHbbdVV0a0urRo/jvY8AQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"_RjGB77sIkGHYTYB0bNtAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e84fc0d1-396f-44cf-ac07-b2994070c6d1","eventName":{"value":"BeginRequest","localizedValue":"BeginRequest"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3dc175e5-8545-424b-b672-555ac2d08244","clientIpAddress":"52.143.215.3","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac/events/e84fc0d1-396f-44cf-ac07-b2994070c6d1/ticks/636921832752969052","level":"Informational","resourceGroupName":"CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_GENERALIZE_VM66Y4XQRPEG5WXNXFAOGP47U6ROGOGOODOXN4XEU2MD4L3L2GIMDDL/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"819fe630-5935-4e96-b5da-3b28b19e5743","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Microsoft.Compute/disks/write"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2969052Z","submissionTimestamp":"2019-04-30T01:08:13.1018479Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4b2bd14e-886d-4e00-be11-a194e37414c8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/4b2bd14e-886d-4e00-be11-a194e37414c8/ticks/636921832752131550","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"288ef32f-7fa4-48f8-9846-7abef1df4f29"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:55.213155Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"27eb9d7f-626c-419a-861b-86f8cda3ceb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/27eb9d7f-626c-419a-861b-86f8cda3ceb8/ticks/636921832751787697","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"60f90b29-0986-4b68-a709-5c8d0803c719","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1787697Z","submissionTimestamp":"2019-04-30T01:08:10.5932792Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"03690a37-900d-4b71-a56d-1c009c48be2e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/03690a37-900d-4b71-a56d-1c009c48be2e/ticks/636921832751331554","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1331554Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"af9f7c9a-7829-4399-9737-d9cca0e6964e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/af9f7c9a-7829-4399-9737-d9cca0e6964e/ticks/636921832750971439","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b7e415ef-2839-4803-9ebf-269d8595b1d8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0971439Z","submissionTimestamp":"2019-04-30T01:08:14.0918401Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"88fbc709-fb90-40ab-869b-87e2a96dba2a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"02151c36-4f7d-4c2a-b1bb-8343902cb161","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/88fbc709-fb90-40ab-869b-87e2a96dba2a/ticks/636921832735681995","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fe1fc460-9b9b-4f79-9d47-529347b26394","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:53.5681995Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"bee8316c-908a-478d-bc4e-30027e7366e4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/bee8316c-908a-478d-bc4e-30027e7366e4/ticks/636921832733631948","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"d8ad2175-d1a0-4766-9677-5c60a52d127d","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0f4db55-159e-4f24-92f0-891c715cfbaa\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"f4325999-5a4e-4a89-9700-33eba936a690\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:53.3631948Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"387b728e-917c-4334-9032-532d5cc56c57","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9157edec-8bf5-42dc-9e6a-dbc4304e3e3e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/387b728e-917c-4334-9032-532d5cc56c57/ticks/636921832725367718","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e55606f3-c125-4b1b-b3fa-baf9c38bad68","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.5367718Z","submissionTimestamp":"2019-04-30T01:08:15.075495Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"94c617bc-9524-45ae-bd84-47599f41763d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/94c617bc-9524-45ae-bd84-47599f41763d/ticks/636921832685388797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11e02e02-0eb0-43a1-b8bb-dd98ac3b9960","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"84be5d5d-5362-4ff8-b148-15d1ce03cc9c\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"8f0c8bb5-72e4-4c88-a8c2-e6b13cbdcd34\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.5388797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"0a7458b6-e0a5-4011-839e-b583005ee4c7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/0a7458b6-e0a5-4011-839e-b583005ee4c7/ticks/636921832684688794","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"dd2a5db2-621c-44da-aaa8-8785a68458b2","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"b1c2b180-38d7-438b-b740-85a9bd218213\\\"\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"73a1829f-31e0-486f-8d53-23f6b03d7efe\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.4688794Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"24688a3d-e37e-4398-bcba-cd380f42472b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/24688a3d-e37e-4398-bcba-cd380f42472b/ticks/636921832684588797","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.4588797Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"e281449b-ed12-4624-8742-67620946cffb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/e281449b-ed12-4624-8742-67620946cffb/ticks/636921832683889166","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:48.3889166Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"ed8c28ff-7d79-4392-bdc2-871de4ef5e05","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/ed8c28ff-7d79-4392-bdc2-871de4ef5e05/ticks/636921832683689191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8dd0614c-9f9c-4e4e-ba8c-6059cbda3c92","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3413489-1d2d-445f-903a-70f68d98e5ae\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2ae8c071-2590-4c1a-87c0-9def961aa0bb\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:48.3689191Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"4233dca8-efd9-4706-9570-5dc2be2f4143","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3e228de5-4c56-48cb-bea1-4ed385db849c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/4233dca8-efd9-4706-9570-5dc2be2f4143/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ad19663-e6da-4f17-8b8b-9cfd3b0a8a51","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"865bea7a-e7da-4169-a0dc-0a97ab2625d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"414649d1-4989-4375-8a83-675e0f4744a3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/865bea7a-e7da-4169-a0dc-0a97ab2625d3/ticks/636921832668539253","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0f0eff50-7153-4d6a-b48a-e7db0f8b6eae","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8539253Z","submissionTimestamp":"2019-04-30T01:08:05.0796764Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"aa7bb29c-3e94-46c9-964d-e8fe7e9d99df","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ba855d8b-b4ba-4051-bfef-2c69954d392e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/aa7bb29c-3e94-46c9-964d-e8fe7e9d99df/ticks/636921832668489348","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b10ca7f7-46cc-4d47-8ab9-e83694da7316","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"francecentral\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8489348Z","submissionTimestamp":"2019-04-30T01:08:05.0786757Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"7efd8d28-468c-4379-9501-f2a99984731c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/7efd8d28-468c-4379-9501-f2a99984731c/ticks/636921832651556015","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.1556015Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAnyzmOdwY2k0eQLsZxGFV415M0OpjcE+Ol1S+/+0ScVCjzqvgdc3PxtheBSWNI+6nP4d7oge8MArGDXoGgYwKbs6d7PZy4gGq2aJSXx7va0Q=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"np-1j9sUJEyx93bdwY4BAA","ver":"1.0"},"correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","description":"","eventDataId":"81fcfd38-f244-4435-b60c-a7c8bdef9b60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"592ec8c0-6ae4-11e9-8687-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri/events/81fcfd38-f244-4435-b60c-a7c8bdef9b60/ticks/636921832613205957","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.3205957Z","submissionTimestamp":"2019-04-30T01:08:05.0873446Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '104792' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:09:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g --location -n --admin-username --image --admin-password --authentication-type + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450204221372326?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -1409,7 +1755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:05 GMT + - Tue, 30 Apr 2019 01:09:46 GMT expires: - '-1' pragma: @@ -1437,13 +1783,13 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","name":"vm_deploy_TDp6nNqqRXAVvkXkJYUUG6dM3oukDEqf","properties":{"templateHash":"1633859173946508270","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:18:46.6140153Z","duration":"PT1M43.5368512S","correlationId":"3a33e688-fec2-4161-8b59-81a793a89a5c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["francecentral"]},{"resourceType":"networkSecurityGroups","locations":["francecentral"]},{"resourceType":"publicIPAddresses","locations":["francecentral"]},{"resourceType":"networkInterfaces","locations":["francecentral"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["francecentral"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm-generalizeVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-generalizeNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-generalizePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-generalize"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","name":"vm_deploy_wIzRuuDbQ0akTBbBZ5UKobiW25nft1ri","properties":{"templateHash":"3713432456021048947","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:09:18.6606811Z","duration":"PT1M35.3202885S","correlationId":"438a3d5e-3266-48ed-bd2c-ea5d7c6ce004","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["francecentral"]},{"resourceType":"networkSecurityGroups","locations":["francecentral"]},{"resourceType":"publicIPAddresses","locations":["francecentral"]},{"resourceType":"networkInterfaces","locations":["francecentral"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["francecentral"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm-generalizeVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-generalizeNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-generalizePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-generalize"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"}]}}' headers: cache-control: - no-cache @@ -1452,7 +1798,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:05 GMT + - Tue, 30 Apr 2019 01:09:46 GMT expires: - '-1' pragma: @@ -1480,24 +1826,24 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"2c7ea522-aa8d-4126-979e-f39e7463569b\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"7b26159c-ea04-4391-9a52-4cd8a9ec19c6\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n\ \ \"sku\": \"7.5\",\r\n \"version\": \"latest\"\r\n },\r\ \n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5\",\r\n \ + : \"vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac\",\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_generalize_vm000001/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-generalize\"\ ,\r\n \"adminUsername\": \"ubuntu\",\r\n \"linuxConfiguration\"\ @@ -1508,21 +1854,21 @@ interactions: }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ : {\r\n \"computerName\": \"vm-generalize\",\r\n \"osName\": \"\ centos\",\r\n \"osVersion\": \"7.5.1804\",\r\n \"vmAgent\": {\r\n\ - \ \"vmAgentVersion\": \"2.2.38\",\r\n \"statuses\": [\r\n \ + \ \"vmAgentVersion\": \"2.2.40\",\r\n \"statuses\": [\r\n \ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ ,\r\n \"message\": \"Guest Agent is running\",\r\n \"\ - time\": \"2019-04-16T21:19:05+00:00\"\r\n }\r\n ],\r\n \ + time\": \"2019-04-30T01:09:47+00:00\"\r\n }\r\n ],\r\n \ \ \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n \ - \ {\r\n \"name\": \"vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5\"\ + \ {\r\n \"name\": \"vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-16T21:17:26.151637+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\": \"2019-04-16T21:18:40.4208224+00:00\"\r\n \ + \ \"time\": \"2019-04-30T01:07:59.1201937+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\": \"2019-04-30T01:09:13.2029757+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\"\ @@ -1533,11 +1879,11 @@ interactions: cache-control: - no-cache content-length: - - '3178' + - '3179' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:06 GMT + - Tue, 30 Apr 2019 01:09:47 GMT expires: - '-1' pragma: @@ -1554,7 +1900,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993 + - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31990 status: code: 200 message: OK @@ -1572,8 +1918,8 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1581,13 +1927,13 @@ interactions: response: body: string: "{\r\n \"name\": \"vm-generalizeVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\"\ - ,\r\n \"etag\": \"W/\\\"2801f805-347e-46f0-a366-de6e8189a503\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"1b0dc556-2916-444e-8b49-bcb71f4c4b13\\\"\",\r\n \ \ \"location\": \"francecentral\",\r\n \"tags\": {},\r\n \"properties\"\ : {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\ - \ \"a6cf605c-d0fd-40f2-a6a1-4f72a07981a9\",\r\n \"ipConfigurations\": [\r\ + \ \"e0f4db55-159e-4f24-92f0-891c715cfbaa\",\r\n \"ipConfigurations\": [\r\ \n {\r\n \"name\": \"ipconfigvm-generalize\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\"\ - ,\r\n \"etag\": \"W/\\\"2801f805-347e-46f0-a366-de6e8189a503\\\"\"\ + ,\r\n \"etag\": \"W/\\\"1b0dc556-2916-444e-8b49-bcb71f4c4b13\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ @@ -1597,8 +1943,8 @@ interactions: \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\": \"yc4q0jvfbfwergu3fbomqaykig.parx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-78-B5-1D\",\r\n \"enableAcceleratedNetworking\"\ + internalDomainNameSuffix\": \"lvo13bdckp2e5mkicxi22a4mte.parx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-78-B5-1F\",\r\n \"enableAcceleratedNetworking\"\ : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"\ \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ @@ -1613,9 +1959,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:07 GMT + - Tue, 30 Apr 2019 01:09:47 GMT etag: - - W/"2801f805-347e-46f0-a366-de6e8189a503" + - W/"1b0dc556-2916-444e-8b49-bcb71f4c4b13" expires: - '-1' pragma: @@ -1648,8 +1994,8 @@ interactions: ParameterSetName: - -g --location -n --admin-username --image --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1657,10 +2003,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vm-generalizePublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"\ - ,\r\n \"etag\": \"W/\\\"ecbdf2cb-08ab-4595-8a8e-c0f1426ac3bb\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"d098003f-19df-42ce-91af-238e5fcf2da9\\\"\",\r\n \ \ \"location\": \"francecentral\",\r\n \"tags\": {},\r\n \"properties\"\ : {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":\ - \ \"d6b7f7a0-b80a-49b9-973e-429f18edbbf6\",\r\n \"ipAddress\": \"40.89.189.37\"\ + \ \"73a1829f-31e0-486f-8d53-23f6b03d7efe\",\r\n \"ipAddress\": \"52.143.157.41\"\ ,\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_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\"\ @@ -1671,13 +2017,13 @@ interactions: cache-control: - no-cache content-length: - - '1068' + - '1069' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:08 GMT + - Tue, 30 Apr 2019 01:09:48 GMT etag: - - W/"ecbdf2cb-08ab-4595-8a8e-c0f1426ac3bb" + - W/"d098003f-19df-42ce-91af-238e5fcf2da9" expires: - '-1' pragma: @@ -1712,8 +2058,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -1723,17 +2069,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 16 Apr 2019 21:19:09 GMT + - Tue, 30 Apr 2019 01:09:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -1764,76 +2110,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 - response: - body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ - \r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 16 Apr 2019 21:19: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/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm deallocate - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:56 GMT + - Tue, 30 Apr 2019 01:10:00 GMT expires: - '-1' pragma: @@ -1850,7 +2144,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992 status: code: 200 message: OK @@ -1868,24 +2162,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:27 GMT + - Tue, 30 Apr 2019 01:10:30 GMT expires: - '-1' pragma: @@ -1902,7 +2196,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991 status: code: 200 message: OK @@ -1920,24 +2214,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:57 GMT + - Tue, 30 Apr 2019 01:11:01 GMT expires: - '-1' pragma: @@ -1954,7 +2248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29984 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29988 status: code: 200 message: OK @@ -1972,24 +2266,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:21:27 GMT + - Tue, 30 Apr 2019 01:11:32 GMT expires: - '-1' pragma: @@ -2006,7 +2300,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29981 + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29985 status: code: 200 message: OK @@ -2024,24 +2318,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:21:58 GMT + - Tue, 30 Apr 2019 01:12:03 GMT expires: - '-1' pragma: @@ -2058,7 +2352,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29978 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29983 status: code: 200 message: OK @@ -2076,24 +2370,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:29 GMT + - Tue, 30 Apr 2019 01:12:34 GMT expires: - '-1' pragma: @@ -2110,7 +2404,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29975 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29980 status: code: 200 message: OK @@ -2128,24 +2422,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:59 GMT + - Tue, 30 Apr 2019 01:13:04 GMT expires: - '-1' pragma: @@ -2162,7 +2456,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29972 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29977 status: code: 200 message: OK @@ -2180,24 +2474,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:30 GMT + - Tue, 30 Apr 2019 01:13:35 GMT expires: - '-1' pragma: @@ -2214,7 +2508,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29969 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29975 status: code: 200 message: OK @@ -2232,24 +2526,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:00 GMT + - Tue, 30 Apr 2019 01:14:05 GMT expires: - '-1' pragma: @@ -2266,7 +2560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29966 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29972 status: code: 200 message: OK @@ -2284,24 +2578,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:31 GMT + - Tue, 30 Apr 2019 01:14:35 GMT expires: - '-1' pragma: @@ -2318,7 +2612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29964 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29969 status: code: 200 message: OK @@ -2336,24 +2630,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:01 GMT + - Tue, 30 Apr 2019 01:15:06 GMT expires: - '-1' pragma: @@ -2370,7 +2664,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29961 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29966 status: code: 200 message: OK @@ -2388,24 +2682,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:31 GMT + - Tue, 30 Apr 2019 01:15:36 GMT expires: - '-1' pragma: @@ -2422,7 +2716,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29958 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29963 status: code: 200 message: OK @@ -2440,24 +2734,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:03 GMT + - Tue, 30 Apr 2019 01:16:07 GMT expires: - '-1' pragma: @@ -2474,7 +2768,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29955 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29960 status: code: 200 message: OK @@ -2492,24 +2786,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:32 GMT + - Tue, 30 Apr 2019 01:16:37 GMT expires: - '-1' pragma: @@ -2526,7 +2820,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29952 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29957 status: code: 200 message: OK @@ -2544,24 +2838,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:27:03 GMT + - Tue, 30 Apr 2019 01:17:08 GMT expires: - '-1' pragma: @@ -2578,7 +2872,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29950 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29954 status: code: 200 message: OK @@ -2596,24 +2890,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/7f5475d6-c12f-4c0e-a040-4e19ec898c2c?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/af811d51-31ec-4cd5-9908-1628f0af07bc?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:19:09.5941024+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:27:32.8949122+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"7f5475d6-c12f-4c0e-a040-4e19ec898c2c\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:09:49.799274+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:17:32.9582726+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"af811d51-31ec-4cd5-9908-1628f0af07bc\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:27:34 GMT + - Tue, 30 Apr 2019 01:17:39 GMT expires: - '-1' pragma: @@ -2630,7 +2924,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29947 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29951 status: code: 200 message: OK @@ -2650,8 +2944,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -2665,7 +2959,7 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2019 21:27:35 GMT + - Tue, 30 Apr 2019 01:17:40 GMT expires: - '-1' pragma: @@ -2698,23 +2992,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"2c7ea522-aa8d-4126-979e-f39e7463569b\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"7b26159c-ea04-4391-9a52-4cd8a9ec19c6\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n\ \ \"sku\": \"7.5\",\r\n \"version\": \"latest\"\r\n },\r\ \n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5\",\r\n \ + : \"vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\ - \n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5\"\ + \n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac\"\ \r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ : {\r\n \"computerName\": \"vm-generalize\",\r\n \"adminUsername\"\ : \"ubuntu\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ @@ -2734,7 +3028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:27:36 GMT + - Tue, 30 Apr 2019 01:17:40 GMT expires: - '-1' pragma: @@ -2751,7 +3045,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31985 + - Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31987 status: code: 200 message: OK @@ -2769,23 +3063,23 @@ interactions: ParameterSetName: - -g -n --source --zone-resilient -l User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"2c7ea522-aa8d-4126-979e-f39e7463569b\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"7b26159c-ea04-4391-9a52-4cd8a9ec19c6\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n\ \ \"sku\": \"7.5\",\r\n \"version\": \"latest\"\r\n },\r\ \n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5\",\r\n \ + : \"vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\ - \n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5\"\ + \n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac\"\ \r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ : {\r\n \"computerName\": \"vm-generalize\",\r\n \"adminUsername\"\ : \"ubuntu\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ @@ -2805,7 +3099,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:27:38 GMT + - Tue, 30 Apr 2019 01:17:41 GMT expires: - '-1' pragma: @@ -2822,14 +3116,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31984 + - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31986 status: code: 200 message: OK - request: body: 'b''{"location": "francecentral", "tags": {}, "properties": {"sourceVirtualMachine": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"}, - "storageProfile": {"zoneResilient": true}}}''' + "storageProfile": {"zoneResilient": true}, "hyperVGeneration": "V1"}}''' headers: Accept: - application/json @@ -2840,44 +3134,44 @@ interactions: Connection: - keep-alive Content-Length: - - '336' + - '362' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --source --zone-resilient -l User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage2?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage2?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize\"\ \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5\"\ + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [],\r\n \"zoneResilient\"\ - : true\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"\ - type\": \"Microsoft.Compute/images\",\r\n \"location\": \"francecentral\"\ - ,\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage2\"\ + : true\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\"\ + : \"V1\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\"\ + : \"francecentral\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage2\"\ ,\r\n \"name\": \"myImage2\"\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/9f89fbf7-5faa-4075-9cf9-1776df589b32?api-version=2018-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/f439aef2-2aca-4071-ac85-c10f4ed533e3?api-version=2019-03-01 cache-control: - no-cache content-length: - - '1175' + - '1206' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:27:39 GMT + - Tue, 30 Apr 2019 01:17:43 GMT expires: - '-1' pragma: @@ -2892,7 +3186,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -2910,15 +3204,15 @@ interactions: ParameterSetName: - -g -n --source --zone-resilient -l User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/9f89fbf7-5faa-4075-9cf9-1776df589b32?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/FranceCentral/operations/f439aef2-2aca-4071-ac85-c10f4ed533e3?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:27:39.7855747+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:27:45.0512028+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"9f89fbf7-5faa-4075-9cf9-1776df589b32\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:17:43.3807281+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:17:48.5215853+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"f439aef2-2aca-4071-ac85-c10f4ed533e3\"\r\n}" headers: cache-control: - no-cache @@ -2927,7 +3221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:10 GMT + - Tue, 30 Apr 2019 01:18:14 GMT expires: - '-1' pragma: @@ -2944,7 +3238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29944 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29949 status: code: 200 message: OK @@ -2962,10 +3256,10 @@ interactions: ParameterSetName: - -g -n --source --zone-resilient -l User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage2?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage2?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ @@ -2973,22 +3267,22 @@ interactions: \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ \ \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_17b0292a4085431c8d73f014712f7db5\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/disks/vm-generalize_OsDisk_1_70bb1c55e95848c38f460e380fafd2ac\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [],\r\n \"zoneResilient\"\ - : true\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \ - \ \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"francecentral\"\ - ,\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage2\"\ + : true\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\"\ + : \"V1\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\"\ + : \"francecentral\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage2\"\ ,\r\n \"name\": \"myImage2\"\r\n}" headers: cache-control: - no-cache content-length: - - '1203' + - '1234' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:10 GMT + - Tue, 30 Apr 2019 01:18:14 GMT expires: - '-1' pragma: @@ -3025,8 +3319,8 @@ interactions: ParameterSetName: - --name --yes --no-wait User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: DELETE @@ -3040,11 +3334,11 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2019 21:28:12 GMT + - Tue, 30 Apr 2019 01:18:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGR0VORVJBTElaRTo1RlZNTlk1WVdTTkpONldFTEJKQ1BVUnwxQzU3MDk0MTZGMzQxQkVGLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGR0VORVJBTElaRTo1RlZNNjZZNFhRUlBFRzVXWE5YRkFPR3xBQTg4NDBFQTU0ODA0QkRFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache strict-transport-security: diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_with_market_place_image.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_with_market_place_image.yaml index 16ce9ce3379..c2b3bb1ea57 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_with_market_place_image.yaml +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_with_market_place_image.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-04-16T21:24:04Z"}}' + "date": "2019-04-30T01:43:00Z"}}' headers: Accept: - application/json @@ -18,15 +18,15 @@ interactions: ParameterSetName: - --location --name --tag User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:24:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:43:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -35,7 +35,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:07 GMT + - Tue, 30 Apr 2019 01:43:01 GMT expires: - '-1' pragma: @@ -45,7 +45,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -63,8 +63,8 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - subscriptionclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + subscriptionclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -112,7 +112,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:07 GMT + - Tue, 30 Apr 2019 01:43:02 GMT expires: - '-1' pragma: @@ -140,8 +140,8 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -159,7 +159,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:07 GMT + - Tue, 30 Apr 2019 01:43:02 GMT expires: - '-1' pragma: @@ -192,8 +192,8 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -218,7 +218,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:07 GMT + - Tue, 30 Apr 2019 01:43:02 GMT expires: - '-1' pragma: @@ -251,8 +251,8 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - subscriptionclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + subscriptionclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -300,7 +300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:07 GMT + - Tue, 30 Apr 2019 01:43:02 GMT expires: - '-1' pragma: @@ -328,8 +328,8 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -347,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:08 GMT + - Tue, 30 Apr 2019 01:43:03 GMT expires: - '-1' pragma: @@ -380,8 +380,8 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -406,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:08 GMT + - Tue, 30 Apr 2019 01:43:03 GMT expires: - '-1' pragma: @@ -441,15 +441,15 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-marketplaceordering/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-marketplaceordering/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/microsoft-ads/offers/linux-data-science-vm-ubuntu/plans/linuxdsvmubuntu/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/microsoft-ads/offers/linux-data-science-vm-ubuntu/plans/linuxdsvmubuntu/agreements/current","name":"linuxdsvmubuntu","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"microsoft-ads","product":"linux-data-science-vm-ubuntu","plan":"linuxdsvmubuntu","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_MICROSOFT%253a2DADS%253a24LINUX%253a2DDATA%253a2DSCIENCE%253a2DVM%253a2DUBUNTU%253a24LINUXDSVMUBUNTU%253a24T6KYYUE6UICDGSKJBSZ7NUG36TS7TLQNEXKVU5ZKR2Y2KZNYCHB3KPFZZIJSWAYBL3WOEYWIQZASGI2LEGBOM2MSVTDOBSREMDZG2DI.txt","privacyPolicyLink":"http://www.microsoft.com/privacystatement/en-us/OnlineServices/Default.aspx","retrieveDatetime":"2019-04-16T21:24:11.6702879Z","signature":"UC43JIH6SSPDTR7A5SECCPLMHGRUXJN7EBOLWEPABWE6OM73QCKNLQKQSIFZFTD7SAEM4NFF6R3KI2W3D6ILZGAI4BS4AW3V2U7VRQQ","accepted":true}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/microsoft-ads/offers/linux-data-science-vm-ubuntu/plans/linuxdsvmubuntu/agreements/current","name":"linuxdsvmubuntu","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"microsoft-ads","product":"linux-data-science-vm-ubuntu","plan":"linuxdsvmubuntu","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_MICROSOFT%253a2DADS%253a24LINUX%253a2DDATA%253a2DSCIENCE%253a2DVM%253a2DUBUNTU%253a24LINUXDSVMUBUNTU%253a24T6KYYUE6UICDGSKJBSZ7NUG36TS7TLQNEXKVU5ZKR2Y2KZNYCHB3KPFZZIJSWAYBL3WOEYWIQZASGI2LEGBOM2MSVTDOBSREMDZG2DI.txt","privacyPolicyLink":"http://www.microsoft.com/privacystatement/en-us/OnlineServices/Default.aspx","retrieveDatetime":"2019-04-30T01:43:07.3013764Z","signature":"OEZYRJVYKZR5WMJRJJV4KN3RHU5OEQMYBOBKYKEYDFYMPMJTAG7VZTVN3PIYUDHLMDICUDRB3H2KWMVIDPIOXZM2JMO4E3YALW2477Q","accepted":true}}' headers: cache-control: - no-cache @@ -460,7 +460,7 @@ interactions: dataserviceversion: - 5.2.1.524 (AzureUX-Store:master.f1863562.190331-2214) date: - - Tue, 16 Apr 2019 21:24:11 GMT + - Tue, 30 Apr 2019 01:43:06 GMT expires: - '-1' pragma: @@ -482,7 +482,7 @@ interactions: body: '{"properties": {"publisher": "microsoft-ads", "product": "linux-data-science-vm-ubuntu", "plan": "linuxdsvmubuntu", "licenseTextLink": "https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_MICROSOFT%253a2DADS%253a24LINUX%253a2DDATA%253a2DSCIENCE%253a2DVM%253a2DUBUNTU%253a24LINUXDSVMUBUNTU%253a24T6KYYUE6UICDGSKJBSZ7NUG36TS7TLQNEXKVU5ZKR2Y2KZNYCHB3KPFZZIJSWAYBL3WOEYWIQZASGI2LEGBOM2MSVTDOBSREMDZG2DI.txt", "privacyPolicyLink": "http://www.microsoft.com/privacystatement/en-us/OnlineServices/Default.aspx", - "retrieveDatetime": "2019-04-16T21:24:11.6702879Z", "signature": "UC43JIH6SSPDTR7A5SECCPLMHGRUXJN7EBOLWEPABWE6OM73QCKNLQKQSIFZFTD7SAEM4NFF6R3KI2W3D6ILZGAI4BS4AW3V2U7VRQQ", + "retrieveDatetime": "2019-04-30T01:43:07.3013764Z", "signature": "OEZYRJVYKZR5WMJRJJV4KN3RHU5OEQMYBOBKYKEYDFYMPMJTAG7VZTVN3PIYUDHLMDICUDRB3H2KWMVIDPIOXZM2JMO4E3YALW2477Q", "accepted": true}}' headers: Accept: @@ -500,15 +500,15 @@ interactions: ParameterSetName: - --urn User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-marketplaceordering/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-marketplaceordering/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/microsoft-ads/offers/linux-data-science-vm-ubuntu/plans/linuxdsvmubuntu/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/Microsoft.MarketplaceOrdering/offertypes/publishers/microsoft-ads/offers/linux-data-science-vm-ubuntu/plans/linuxdsvmubuntu/agreements/current","name":"linuxdsvmubuntu","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"microsoft-ads","product":"linux-data-science-vm-ubuntu","plan":"linuxdsvmubuntu","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_MICROSOFT%253a2DADS%253a24LINUX%253a2DDATA%253a2DSCIENCE%253a2DVM%253a2DUBUNTU%253a24LINUXDSVMUBUNTU%253a24T6KYYUE6UICDGSKJBSZ7NUG36TS7TLQNEXKVU5ZKR2Y2KZNYCHB3KPFZZIJSWAYBL3WOEYWIQZASGI2LEGBOM2MSVTDOBSREMDZG2DI.txt","privacyPolicyLink":"http://www.microsoft.com/privacystatement/en-us/OnlineServices/Default.aspx","retrieveDatetime":"2019-04-16T21:24:11.6702879Z","signature":"UC43JIH6SSPDTR7A5SECCPLMHGRUXJN7EBOLWEPABWE6OM73QCKNLQKQSIFZFTD7SAEM4NFF6R3KI2W3D6ILZGAI4BS4AW3V2U7VRQQ","accepted":true}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/Microsoft.MarketplaceOrdering/offertypes/publishers/microsoft-ads/offers/linux-data-science-vm-ubuntu/plans/linuxdsvmubuntu/agreements/current","name":"linuxdsvmubuntu","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"microsoft-ads","product":"linux-data-science-vm-ubuntu","plan":"linuxdsvmubuntu","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_MICROSOFT%253a2DADS%253a24LINUX%253a2DDATA%253a2DSCIENCE%253a2DVM%253a2DUBUNTU%253a24LINUXDSVMUBUNTU%253a24T6KYYUE6UICDGSKJBSZ7NUG36TS7TLQNEXKVU5ZKR2Y2KZNYCHB3KPFZZIJSWAYBL3WOEYWIQZASGI2LEGBOM2MSVTDOBSREMDZG2DI.txt","privacyPolicyLink":"http://www.microsoft.com/privacystatement/en-us/OnlineServices/Default.aspx","retrieveDatetime":"2019-04-30T01:43:07.3013764Z","signature":"OEZYRJVYKZR5WMJRJJV4KN3RHU5OEQMYBOBKYKEYDFYMPMJTAG7VZTVN3PIYUDHLMDICUDRB3H2KWMVIDPIOXZM2JMO4E3YALW2477Q","accepted":true}}' headers: cache-control: - no-cache @@ -519,7 +519,7 @@ interactions: dataserviceversion: - 5.2.1.524 (AzureUX-Store:master.f1863562.190331-2214) date: - - Tue, 16 Apr 2019 21:24:13 GMT + - Tue, 30 Apr 2019 01:43:09 GMT expires: - '-1' pragma: @@ -553,15 +553,15 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:24:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:43:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -570,7 +570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:13 GMT + - Tue, 30 Apr 2019 01:43:09 GMT expires: - '-1' pragma: @@ -598,8 +598,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -617,7 +617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:13 GMT + - Tue, 30 Apr 2019 01:43:09 GMT expires: - '-1' pragma: @@ -650,8 +650,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -676,7 +676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:13 GMT + - Tue, 30 Apr 2019 01:43:10 GMT expires: - '-1' pragma: @@ -709,8 +709,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -726,7 +726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:14 GMT + - Tue, 30 Apr 2019 01:43:10 GMT expires: - '-1' pragma: @@ -790,18 +790,18 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","name":"vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","properties":{"templateHash":"12488887103531937980","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:24:23.2405825Z","duration":"PT6.1436981S","correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","name":"vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","properties":{"templateHash":"17583355368149451316","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:43:18.8058227Z","duration":"PT5.4781789S","correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/operationStatuses/08586461570283807454?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/operationStatuses/08586450182921499845?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -809,7 +809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:23 GMT + - Tue, 30 Apr 2019 01:43:18 GMT expires: - '-1' pragma: @@ -819,7 +819,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -839,12 +839,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A24%3A24Z%20and%20correlationId%20eq%20%2775da40a3-49de-4a41-a249-41de9f0f8c23%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A43%3A22Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: string: '{"value":[]}' @@ -856,7 +856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:25 GMT + - Tue, 30 Apr 2019 01:43:22 GMT expires: - '-1' pragma: @@ -890,28 +890,24 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A24%3A34Z%20and%20correlationId%20eq%20%2775da40a3-49de-4a41-a249-41de9f0f8c23%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A43%3A33Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5d8c889d-9a9f-4c82-a3db-70540e54a11a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/5d8c889d-9a9f-4c82-a3db-70540e54a11a/ticks/636910466551852656","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:15.1852656Z","submissionTimestamp":"2019-04-16T21:24:35.1005206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '3710' + - '12' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:35 GMT + - Tue, 30 Apr 2019 01:43:33 GMT expires: - '-1' pragma: @@ -945,33 +941,33 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A24%3A45Z%20and%20correlationId%20eq%20%2775da40a3-49de-4a41-a249-41de9f0f8c23%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A43%3A43Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b836d58a-0929-4034-b07b-17f32d8aacd0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/b836d58a-0929-4034-b07b-17f32d8aacd0/ticks/636910466636052869","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:23.6052869Z","submissionTimestamp":"2019-04-16T21:24:45.1200053Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5d8c889d-9a9f-4c82-a3db-70540e54a11a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/5d8c889d-9a9f-4c82-a3db-70540e54a11a/ticks/636910466551852656","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:15.1852656Z","submissionTimestamp":"2019-04-16T21:24:35.1005206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '7507' + - '7510' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:46 GMT + - Tue, 30 Apr 2019 01:43:43 GMT expires: - '-1' pragma: @@ -1003,10 +999,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461570283807454?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450182921499845?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1018,7 +1014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:53 GMT + - Tue, 30 Apr 2019 01:43:48 GMT expires: - '-1' pragma: @@ -1048,39 +1044,67 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A24%3A55Z%20and%20correlationId%20eq%20%2775da40a3-49de-4a41-a249-41de9f0f8c23%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A43%3A53Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288/ticks/636910466785108659","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.5108659Z","submissionTimestamp":"2019-04-16T21:24:54.1767706Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"4ae8592d-5dcb-4ada-ad90-4c5044876a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ae8592d-5dcb-4ada-ad90-4c5044876a49/ticks/636910466696637304","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6637304Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b836d58a-0929-4034-b07b-17f32d8aacd0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/b836d58a-0929-4034-b07b-17f32d8aacd0/ticks/636910466636052869","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:23.6052869Z","submissionTimestamp":"2019-04-16T21:24:45.1200053Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5d8c889d-9a9f-4c82-a3db-70540e54a11a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/5d8c889d-9a9f-4c82-a3db-70540e54a11a/ticks/636910466551852656","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:15.1852656Z","submissionTimestamp":"2019-04-16T21:24:35.1005206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '15901' + - '48530' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:56 GMT + - Tue, 30 Apr 2019 01:43:53 GMT expires: - '-1' pragma: @@ -1114,89 +1138,83 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A25%3A06Z%20and%20correlationId%20eq%20%2775da40a3-49de-4a41-a249-41de9f0f8c23%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A44%3A04Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"3daa8ddd-48a9-4de1-a329-8792f74eb1d7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3daa8ddd-48a9-4de1-a329-8792f74eb1d7/ticks/636910466887660652","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:48.7660652Z","submissionTimestamp":"2019-04-16T21:25:04.1091416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b1973c7e-c835-43d6-90d2-97a5ef9231b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b1973c7e-c835-43d6-90d2-97a5ef9231b3/ticks/636910466852672734","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.2672734Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"ea330e89-9120-4a5b-9d27-6d2e8f18fc2c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/ea330e89-9120-4a5b-9d27-6d2e8f18fc2c/ticks/636910466811013118","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:41.1013118Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e04eb8f3-c1b2-4d4c-af08-d9169426c995","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e04eb8f3-c1b2-4d4c-af08-d9169426c995/ticks/636910466806094205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"13085b33-ffba-44aa-b43a-c8d2f7c57b5a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:40.6094205Z","submissionTimestamp":"2019-04-16T21:25:04.0832796Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"fd58b695-7071-4f47-a85e-24f188d2d3c8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/fd58b695-7071-4f47-a85e-24f188d2d3c8/ticks/636910466802913179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1ac9f465-d576-4e6c-9cd4-777ec215c502","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7abab53b-09f7-472e-a413-466e4d1889b2\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:40.2913179Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00/ticks/636910466789838467","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"9eefb232-e25f-454b-99f4-3ae0ea8f51fc","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.9838467Z","submissionTimestamp":"2019-04-16T21:24:58.0912327Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288/ticks/636910466785108659","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.5108659Z","submissionTimestamp":"2019-04-16T21:24:54.1767706Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5ce26574-ae86-476a-9b57-69d6d6cd2dcb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/5ce26574-ae86-476a-9b57-69d6d6cd2dcb/ticks/636910466784798860","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3514976f-97cf-40e8-9c20-006ec91f5196","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.479886Z","submissionTimestamp":"2019-04-16T21:24:55.132022Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"9229c3dc-211b-4f62-bfce-c3265fa812cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9229c3dc-211b-4f62-bfce-c3265fa812cb/ticks/636910466729801205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"cda94719-8981-4c0b-9ee8-791e705aa681","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"03a8b6ba-df11-40f3-9e90-0e7cc8f1f185\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"799b3b7d-4a7a-4de4-b691-940591b8c991\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.9801205Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"6aee19e3-d4af-4b30-984b-09701437cc7b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6aee19e3-d4af-4b30-984b-09701437cc7b/ticks/636910466728437261","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8ca14f9a-fd21-4bfc-ab09-0f2429b26bc4","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ea145af4-6df7-4e42-8f9c-fbaf94929d25\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.8437261Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95/ticks/636910466727687210","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.768721Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"bbc062d8-0ca2-4258-8215-dfc7f7bf9d69","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/bbc062d8-0ca2-4258-8215-dfc7f7bf9d69/ticks/636910466726336957","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.6336957Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"78a8030e-fcd2-44d8-beeb-2a5ccefad658","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/78a8030e-fcd2-44d8-beeb-2a5ccefad658/ticks/636910466724786950","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0c20ca0b-412d-4ebc-9307-64c961ffc52f","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"66c1f01d-7193-431a-a3cc-46112a03a49a\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.478695Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"4ae8592d-5dcb-4ada-ad90-4c5044876a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ae8592d-5dcb-4ada-ad90-4c5044876a49/ticks/636910466696637304","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6637304Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0503be6e-0048-434b-abbc-1aa901c0e842","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/0503be6e-0048-434b-abbc-1aa901c0e842/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"babffc37-6bad-420a-b561-b9a6861898a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/babffc37-6bad-420a-b561-b9a6861898a8/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b836d58a-0929-4034-b07b-17f32d8aacd0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/b836d58a-0929-4034-b07b-17f32d8aacd0/ticks/636910466636052869","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:23.6052869Z","submissionTimestamp":"2019-04-16T21:24:45.1200053Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5d8c889d-9a9f-4c82-a3db-70540e54a11a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/5d8c889d-9a9f-4c82-a3db-70540e54a11a/ticks/636910466551852656","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:15.1852656Z","submissionTimestamp":"2019-04-16T21:24:35.1005206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '76316' + - '69363' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:07 GMT + - Tue, 30 Apr 2019 01:44:04 GMT expires: - '-1' pragma: @@ -1230,105 +1248,83 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A25%3A16Z%20and%20correlationId%20eq%20%2775da40a3-49de-4a41-a249-41de9f0f8c23%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A44%3A14Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"11a41ead-08a6-4d76-b73f-7c28a72e40fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/11a41ead-08a6-4d76-b73f-7c28a72e40fe/ticks/636910466900276922","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"158d6921-357b-4a24-87b3-3229a412161f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:50.0276922Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"011278a4-88aa-4dae-a55c-01beac6e67fd","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/011278a4-88aa-4dae-a55c-01beac6e67fd/ticks/636910466898176864","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:49.8176864Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"3daa8ddd-48a9-4de1-a329-8792f74eb1d7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3daa8ddd-48a9-4de1-a329-8792f74eb1d7/ticks/636910466887660652","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:48.7660652Z","submissionTimestamp":"2019-04-16T21:25:04.1091416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"1262c2f1-616f-4df4-a4b4-06adb857dcc9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/1262c2f1-616f-4df4-a4b4-06adb857dcc9/ticks/636910466860820276","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d03daf7b-a98d-4943-bc97-cac9cd7cb4a1"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:46.0820276Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc/ticks/636910466858835936","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0ac85c7-de12-489e-8906-869839914b9a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:45.8835936Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"58bd06d6-71cc-44a2-9e9e-4d5875806429","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/58bd06d6-71cc-44a2-9e9e-4d5875806429/ticks/636910466855486205","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5486205Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"2df5f926-66d3-4335-95e6-76bbec0e7965","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/2df5f926-66d3-4335-95e6-76bbec0e7965/ticks/636910466855103757","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5103757Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b1973c7e-c835-43d6-90d2-97a5ef9231b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b1973c7e-c835-43d6-90d2-97a5ef9231b3/ticks/636910466852672734","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.2672734Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"ea330e89-9120-4a5b-9d27-6d2e8f18fc2c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/ea330e89-9120-4a5b-9d27-6d2e8f18fc2c/ticks/636910466811013118","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:41.1013118Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e04eb8f3-c1b2-4d4c-af08-d9169426c995","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e04eb8f3-c1b2-4d4c-af08-d9169426c995/ticks/636910466806094205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"13085b33-ffba-44aa-b43a-c8d2f7c57b5a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:40.6094205Z","submissionTimestamp":"2019-04-16T21:25:04.0832796Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"fd58b695-7071-4f47-a85e-24f188d2d3c8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/fd58b695-7071-4f47-a85e-24f188d2d3c8/ticks/636910466802913179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1ac9f465-d576-4e6c-9cd4-777ec215c502","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7abab53b-09f7-472e-a413-466e4d1889b2\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:40.2913179Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00/ticks/636910466789838467","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"9eefb232-e25f-454b-99f4-3ae0ea8f51fc","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.9838467Z","submissionTimestamp":"2019-04-16T21:24:58.0912327Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288/ticks/636910466785108659","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.5108659Z","submissionTimestamp":"2019-04-16T21:24:54.1767706Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5ce26574-ae86-476a-9b57-69d6d6cd2dcb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/5ce26574-ae86-476a-9b57-69d6d6cd2dcb/ticks/636910466784798860","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3514976f-97cf-40e8-9c20-006ec91f5196","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.479886Z","submissionTimestamp":"2019-04-16T21:24:55.132022Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"9229c3dc-211b-4f62-bfce-c3265fa812cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9229c3dc-211b-4f62-bfce-c3265fa812cb/ticks/636910466729801205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"cda94719-8981-4c0b-9ee8-791e705aa681","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"03a8b6ba-df11-40f3-9e90-0e7cc8f1f185\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"799b3b7d-4a7a-4de4-b691-940591b8c991\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.9801205Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"6aee19e3-d4af-4b30-984b-09701437cc7b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6aee19e3-d4af-4b30-984b-09701437cc7b/ticks/636910466728437261","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8ca14f9a-fd21-4bfc-ab09-0f2429b26bc4","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ea145af4-6df7-4e42-8f9c-fbaf94929d25\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.8437261Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95/ticks/636910466727687210","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.768721Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"bbc062d8-0ca2-4258-8215-dfc7f7bf9d69","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/bbc062d8-0ca2-4258-8215-dfc7f7bf9d69/ticks/636910466726336957","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.6336957Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"78a8030e-fcd2-44d8-beeb-2a5ccefad658","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/78a8030e-fcd2-44d8-beeb-2a5ccefad658/ticks/636910466724786950","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0c20ca0b-412d-4ebc-9307-64c961ffc52f","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"66c1f01d-7193-431a-a3cc-46112a03a49a\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.478695Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"4ae8592d-5dcb-4ada-ad90-4c5044876a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ae8592d-5dcb-4ada-ad90-4c5044876a49/ticks/636910466696637304","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6637304Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0503be6e-0048-434b-abbc-1aa901c0e842","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/0503be6e-0048-434b-abbc-1aa901c0e842/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"babffc37-6bad-420a-b561-b9a6861898a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/babffc37-6bad-420a-b561-b9a6861898a8/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b836d58a-0929-4034-b07b-17f32d8aacd0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/b836d58a-0929-4034-b07b-17f32d8aacd0/ticks/636910466636052869","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:23.6052869Z","submissionTimestamp":"2019-04-16T21:24:45.1200053Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5d8c889d-9a9f-4c82-a3db-70540e54a11a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/5d8c889d-9a9f-4c82-a3db-70540e54a11a/ticks/636910466551852656","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:15.1852656Z","submissionTimestamp":"2019-04-16T21:24:35.1005206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '95080' + - '69363' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:17 GMT + - Tue, 30 Apr 2019 01:44:14 GMT expires: - '-1' pragma: @@ -1360,10 +1356,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461570283807454?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450182921499845?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1375,7 +1371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:23 GMT + - Tue, 30 Apr 2019 01:44:19 GMT expires: - '-1' pragma: @@ -1405,109 +1401,83 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A25%3A27Z%20and%20correlationId%20eq%20%2775da40a3-49de-4a41-a249-41de9f0f8c23%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A44%3A25Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"65d65556-50ac-4678-b41d-d068f6c82c89","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/65d65556-50ac-4678-b41d-d068f6c82c89/ticks/636910467017926179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3b9d6b78-e5ea-4f46-83cd-40a136258b53","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:25:01.7926179Z","submissionTimestamp":"2019-04-16T21:25:24.1483694Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"11a41ead-08a6-4d76-b73f-7c28a72e40fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/11a41ead-08a6-4d76-b73f-7c28a72e40fe/ticks/636910466900276922","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"158d6921-357b-4a24-87b3-3229a412161f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:50.0276922Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"011278a4-88aa-4dae-a55c-01beac6e67fd","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/011278a4-88aa-4dae-a55c-01beac6e67fd/ticks/636910466898176864","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:49.8176864Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"3daa8ddd-48a9-4de1-a329-8792f74eb1d7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3daa8ddd-48a9-4de1-a329-8792f74eb1d7/ticks/636910466887660652","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:48.7660652Z","submissionTimestamp":"2019-04-16T21:25:04.1091416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"1262c2f1-616f-4df4-a4b4-06adb857dcc9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/1262c2f1-616f-4df4-a4b4-06adb857dcc9/ticks/636910466860820276","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d03daf7b-a98d-4943-bc97-cac9cd7cb4a1"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:46.0820276Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc/ticks/636910466858835936","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0ac85c7-de12-489e-8906-869839914b9a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:45.8835936Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"58bd06d6-71cc-44a2-9e9e-4d5875806429","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/58bd06d6-71cc-44a2-9e9e-4d5875806429/ticks/636910466855486205","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5486205Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"2df5f926-66d3-4335-95e6-76bbec0e7965","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/2df5f926-66d3-4335-95e6-76bbec0e7965/ticks/636910466855103757","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5103757Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b1973c7e-c835-43d6-90d2-97a5ef9231b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b1973c7e-c835-43d6-90d2-97a5ef9231b3/ticks/636910466852672734","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.2672734Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"ea330e89-9120-4a5b-9d27-6d2e8f18fc2c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/ea330e89-9120-4a5b-9d27-6d2e8f18fc2c/ticks/636910466811013118","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:41.1013118Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e04eb8f3-c1b2-4d4c-af08-d9169426c995","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e04eb8f3-c1b2-4d4c-af08-d9169426c995/ticks/636910466806094205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"13085b33-ffba-44aa-b43a-c8d2f7c57b5a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:40.6094205Z","submissionTimestamp":"2019-04-16T21:25:04.0832796Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"fd58b695-7071-4f47-a85e-24f188d2d3c8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/fd58b695-7071-4f47-a85e-24f188d2d3c8/ticks/636910466802913179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1ac9f465-d576-4e6c-9cd4-777ec215c502","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7abab53b-09f7-472e-a413-466e4d1889b2\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:40.2913179Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00/ticks/636910466789838467","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"9eefb232-e25f-454b-99f4-3ae0ea8f51fc","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.9838467Z","submissionTimestamp":"2019-04-16T21:24:58.0912327Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288/ticks/636910466785108659","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.5108659Z","submissionTimestamp":"2019-04-16T21:24:54.1767706Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5ce26574-ae86-476a-9b57-69d6d6cd2dcb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/5ce26574-ae86-476a-9b57-69d6d6cd2dcb/ticks/636910466784798860","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3514976f-97cf-40e8-9c20-006ec91f5196","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.479886Z","submissionTimestamp":"2019-04-16T21:24:55.132022Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"9229c3dc-211b-4f62-bfce-c3265fa812cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9229c3dc-211b-4f62-bfce-c3265fa812cb/ticks/636910466729801205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"cda94719-8981-4c0b-9ee8-791e705aa681","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"03a8b6ba-df11-40f3-9e90-0e7cc8f1f185\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"799b3b7d-4a7a-4de4-b691-940591b8c991\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.9801205Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"6aee19e3-d4af-4b30-984b-09701437cc7b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6aee19e3-d4af-4b30-984b-09701437cc7b/ticks/636910466728437261","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8ca14f9a-fd21-4bfc-ab09-0f2429b26bc4","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ea145af4-6df7-4e42-8f9c-fbaf94929d25\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.8437261Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95/ticks/636910466727687210","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.768721Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"bbc062d8-0ca2-4258-8215-dfc7f7bf9d69","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/bbc062d8-0ca2-4258-8215-dfc7f7bf9d69/ticks/636910466726336957","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.6336957Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"78a8030e-fcd2-44d8-beeb-2a5ccefad658","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/78a8030e-fcd2-44d8-beeb-2a5ccefad658/ticks/636910466724786950","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0c20ca0b-412d-4ebc-9307-64c961ffc52f","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"66c1f01d-7193-431a-a3cc-46112a03a49a\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.478695Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"4ae8592d-5dcb-4ada-ad90-4c5044876a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ae8592d-5dcb-4ada-ad90-4c5044876a49/ticks/636910466696637304","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6637304Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0503be6e-0048-434b-abbc-1aa901c0e842","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/0503be6e-0048-434b-abbc-1aa901c0e842/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"babffc37-6bad-420a-b561-b9a6861898a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/babffc37-6bad-420a-b561-b9a6861898a8/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b836d58a-0929-4034-b07b-17f32d8aacd0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/b836d58a-0929-4034-b07b-17f32d8aacd0/ticks/636910466636052869","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:23.6052869Z","submissionTimestamp":"2019-04-16T21:24:45.1200053Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5d8c889d-9a9f-4c82-a3db-70540e54a11a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/5d8c889d-9a9f-4c82-a3db-70540e54a11a/ticks/636910466551852656","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:15.1852656Z","submissionTimestamp":"2019-04-16T21:24:35.1005206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '98657' + - '69363' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:28 GMT + - Tue, 30 Apr 2019 01:44:25 GMT expires: - '-1' pragma: @@ -1541,109 +1511,83 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A25%3A37Z%20and%20correlationId%20eq%20%2775da40a3-49de-4a41-a249-41de9f0f8c23%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A44%3A35Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"65d65556-50ac-4678-b41d-d068f6c82c89","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/65d65556-50ac-4678-b41d-d068f6c82c89/ticks/636910467017926179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3b9d6b78-e5ea-4f46-83cd-40a136258b53","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:25:01.7926179Z","submissionTimestamp":"2019-04-16T21:25:24.1483694Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"11a41ead-08a6-4d76-b73f-7c28a72e40fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/11a41ead-08a6-4d76-b73f-7c28a72e40fe/ticks/636910466900276922","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"158d6921-357b-4a24-87b3-3229a412161f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:50.0276922Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"011278a4-88aa-4dae-a55c-01beac6e67fd","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/011278a4-88aa-4dae-a55c-01beac6e67fd/ticks/636910466898176864","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:49.8176864Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"3daa8ddd-48a9-4de1-a329-8792f74eb1d7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3daa8ddd-48a9-4de1-a329-8792f74eb1d7/ticks/636910466887660652","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:48.7660652Z","submissionTimestamp":"2019-04-16T21:25:04.1091416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"1262c2f1-616f-4df4-a4b4-06adb857dcc9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/1262c2f1-616f-4df4-a4b4-06adb857dcc9/ticks/636910466860820276","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d03daf7b-a98d-4943-bc97-cac9cd7cb4a1"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:46.0820276Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc/ticks/636910466858835936","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0ac85c7-de12-489e-8906-869839914b9a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:45.8835936Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"58bd06d6-71cc-44a2-9e9e-4d5875806429","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/58bd06d6-71cc-44a2-9e9e-4d5875806429/ticks/636910466855486205","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5486205Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"2df5f926-66d3-4335-95e6-76bbec0e7965","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/2df5f926-66d3-4335-95e6-76bbec0e7965/ticks/636910466855103757","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5103757Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b1973c7e-c835-43d6-90d2-97a5ef9231b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b1973c7e-c835-43d6-90d2-97a5ef9231b3/ticks/636910466852672734","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.2672734Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"ea330e89-9120-4a5b-9d27-6d2e8f18fc2c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/ea330e89-9120-4a5b-9d27-6d2e8f18fc2c/ticks/636910466811013118","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:41.1013118Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e04eb8f3-c1b2-4d4c-af08-d9169426c995","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e04eb8f3-c1b2-4d4c-af08-d9169426c995/ticks/636910466806094205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"13085b33-ffba-44aa-b43a-c8d2f7c57b5a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:40.6094205Z","submissionTimestamp":"2019-04-16T21:25:04.0832796Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"fd58b695-7071-4f47-a85e-24f188d2d3c8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/fd58b695-7071-4f47-a85e-24f188d2d3c8/ticks/636910466802913179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1ac9f465-d576-4e6c-9cd4-777ec215c502","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7abab53b-09f7-472e-a413-466e4d1889b2\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:40.2913179Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00/ticks/636910466789838467","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"9eefb232-e25f-454b-99f4-3ae0ea8f51fc","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.9838467Z","submissionTimestamp":"2019-04-16T21:24:58.0912327Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288/ticks/636910466785108659","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.5108659Z","submissionTimestamp":"2019-04-16T21:24:54.1767706Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5ce26574-ae86-476a-9b57-69d6d6cd2dcb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/5ce26574-ae86-476a-9b57-69d6d6cd2dcb/ticks/636910466784798860","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3514976f-97cf-40e8-9c20-006ec91f5196","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.479886Z","submissionTimestamp":"2019-04-16T21:24:55.132022Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"9229c3dc-211b-4f62-bfce-c3265fa812cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9229c3dc-211b-4f62-bfce-c3265fa812cb/ticks/636910466729801205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"cda94719-8981-4c0b-9ee8-791e705aa681","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"03a8b6ba-df11-40f3-9e90-0e7cc8f1f185\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"799b3b7d-4a7a-4de4-b691-940591b8c991\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.9801205Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"6aee19e3-d4af-4b30-984b-09701437cc7b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6aee19e3-d4af-4b30-984b-09701437cc7b/ticks/636910466728437261","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8ca14f9a-fd21-4bfc-ab09-0f2429b26bc4","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ea145af4-6df7-4e42-8f9c-fbaf94929d25\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.8437261Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95/ticks/636910466727687210","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.768721Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"bbc062d8-0ca2-4258-8215-dfc7f7bf9d69","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/bbc062d8-0ca2-4258-8215-dfc7f7bf9d69/ticks/636910466726336957","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.6336957Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"78a8030e-fcd2-44d8-beeb-2a5ccefad658","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/78a8030e-fcd2-44d8-beeb-2a5ccefad658/ticks/636910466724786950","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0c20ca0b-412d-4ebc-9307-64c961ffc52f","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"66c1f01d-7193-431a-a3cc-46112a03a49a\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.478695Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"4ae8592d-5dcb-4ada-ad90-4c5044876a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ae8592d-5dcb-4ada-ad90-4c5044876a49/ticks/636910466696637304","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6637304Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0503be6e-0048-434b-abbc-1aa901c0e842","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/0503be6e-0048-434b-abbc-1aa901c0e842/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"babffc37-6bad-420a-b561-b9a6861898a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/babffc37-6bad-420a-b561-b9a6861898a8/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b836d58a-0929-4034-b07b-17f32d8aacd0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/b836d58a-0929-4034-b07b-17f32d8aacd0/ticks/636910466636052869","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:23.6052869Z","submissionTimestamp":"2019-04-16T21:24:45.1200053Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5d8c889d-9a9f-4c82-a3db-70540e54a11a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/5d8c889d-9a9f-4c82-a3db-70540e54a11a/ticks/636910466551852656","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:15.1852656Z","submissionTimestamp":"2019-04-16T21:24:35.1005206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '98657' + - '69363' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:38 GMT + - Tue, 30 Apr 2019 01:44:36 GMT expires: - '-1' pragma: @@ -1677,109 +1621,83 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A25%3A47Z%20and%20correlationId%20eq%20%2775da40a3-49de-4a41-a249-41de9f0f8c23%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A44%3A46Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"65d65556-50ac-4678-b41d-d068f6c82c89","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/65d65556-50ac-4678-b41d-d068f6c82c89/ticks/636910467017926179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3b9d6b78-e5ea-4f46-83cd-40a136258b53","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:25:01.7926179Z","submissionTimestamp":"2019-04-16T21:25:24.1483694Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"11a41ead-08a6-4d76-b73f-7c28a72e40fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/11a41ead-08a6-4d76-b73f-7c28a72e40fe/ticks/636910466900276922","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"158d6921-357b-4a24-87b3-3229a412161f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:50.0276922Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"011278a4-88aa-4dae-a55c-01beac6e67fd","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/011278a4-88aa-4dae-a55c-01beac6e67fd/ticks/636910466898176864","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:49.8176864Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"3daa8ddd-48a9-4de1-a329-8792f74eb1d7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3daa8ddd-48a9-4de1-a329-8792f74eb1d7/ticks/636910466887660652","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:48.7660652Z","submissionTimestamp":"2019-04-16T21:25:04.1091416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"1262c2f1-616f-4df4-a4b4-06adb857dcc9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/1262c2f1-616f-4df4-a4b4-06adb857dcc9/ticks/636910466860820276","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d03daf7b-a98d-4943-bc97-cac9cd7cb4a1"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:46.0820276Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc/ticks/636910466858835936","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0ac85c7-de12-489e-8906-869839914b9a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:45.8835936Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"58bd06d6-71cc-44a2-9e9e-4d5875806429","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/58bd06d6-71cc-44a2-9e9e-4d5875806429/ticks/636910466855486205","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5486205Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"2df5f926-66d3-4335-95e6-76bbec0e7965","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/2df5f926-66d3-4335-95e6-76bbec0e7965/ticks/636910466855103757","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5103757Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b1973c7e-c835-43d6-90d2-97a5ef9231b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b1973c7e-c835-43d6-90d2-97a5ef9231b3/ticks/636910466852672734","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.2672734Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"ea330e89-9120-4a5b-9d27-6d2e8f18fc2c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/ea330e89-9120-4a5b-9d27-6d2e8f18fc2c/ticks/636910466811013118","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:41.1013118Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e04eb8f3-c1b2-4d4c-af08-d9169426c995","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e04eb8f3-c1b2-4d4c-af08-d9169426c995/ticks/636910466806094205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"13085b33-ffba-44aa-b43a-c8d2f7c57b5a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:40.6094205Z","submissionTimestamp":"2019-04-16T21:25:04.0832796Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"fd58b695-7071-4f47-a85e-24f188d2d3c8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/fd58b695-7071-4f47-a85e-24f188d2d3c8/ticks/636910466802913179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1ac9f465-d576-4e6c-9cd4-777ec215c502","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7abab53b-09f7-472e-a413-466e4d1889b2\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:40.2913179Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00/ticks/636910466789838467","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"9eefb232-e25f-454b-99f4-3ae0ea8f51fc","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.9838467Z","submissionTimestamp":"2019-04-16T21:24:58.0912327Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288/ticks/636910466785108659","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.5108659Z","submissionTimestamp":"2019-04-16T21:24:54.1767706Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5ce26574-ae86-476a-9b57-69d6d6cd2dcb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/5ce26574-ae86-476a-9b57-69d6d6cd2dcb/ticks/636910466784798860","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3514976f-97cf-40e8-9c20-006ec91f5196","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.479886Z","submissionTimestamp":"2019-04-16T21:24:55.132022Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"9229c3dc-211b-4f62-bfce-c3265fa812cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9229c3dc-211b-4f62-bfce-c3265fa812cb/ticks/636910466729801205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"cda94719-8981-4c0b-9ee8-791e705aa681","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"03a8b6ba-df11-40f3-9e90-0e7cc8f1f185\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"799b3b7d-4a7a-4de4-b691-940591b8c991\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.9801205Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"6aee19e3-d4af-4b30-984b-09701437cc7b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6aee19e3-d4af-4b30-984b-09701437cc7b/ticks/636910466728437261","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8ca14f9a-fd21-4bfc-ab09-0f2429b26bc4","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ea145af4-6df7-4e42-8f9c-fbaf94929d25\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.8437261Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95/ticks/636910466727687210","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.768721Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"bbc062d8-0ca2-4258-8215-dfc7f7bf9d69","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/bbc062d8-0ca2-4258-8215-dfc7f7bf9d69/ticks/636910466726336957","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.6336957Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"78a8030e-fcd2-44d8-beeb-2a5ccefad658","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/78a8030e-fcd2-44d8-beeb-2a5ccefad658/ticks/636910466724786950","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0c20ca0b-412d-4ebc-9307-64c961ffc52f","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"66c1f01d-7193-431a-a3cc-46112a03a49a\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.478695Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"4ae8592d-5dcb-4ada-ad90-4c5044876a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ae8592d-5dcb-4ada-ad90-4c5044876a49/ticks/636910466696637304","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6637304Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0503be6e-0048-434b-abbc-1aa901c0e842","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/0503be6e-0048-434b-abbc-1aa901c0e842/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"babffc37-6bad-420a-b561-b9a6861898a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/babffc37-6bad-420a-b561-b9a6861898a8/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b836d58a-0929-4034-b07b-17f32d8aacd0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/b836d58a-0929-4034-b07b-17f32d8aacd0/ticks/636910466636052869","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:23.6052869Z","submissionTimestamp":"2019-04-16T21:24:45.1200053Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5d8c889d-9a9f-4c82-a3db-70540e54a11a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/5d8c889d-9a9f-4c82-a3db-70540e54a11a/ticks/636910466551852656","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:15.1852656Z","submissionTimestamp":"2019-04-16T21:24:35.1005206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '98657' + - '69363' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:49 GMT + - Tue, 30 Apr 2019 01:44:46 GMT expires: - '-1' pragma: @@ -1811,10 +1729,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461570283807454?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450182921499845?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1826,7 +1744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:54 GMT + - Tue, 30 Apr 2019 01:44:49 GMT expires: - '-1' pragma: @@ -1856,113 +1774,83 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A25%3A58Z%20and%20correlationId%20eq%20%2775da40a3-49de-4a41-a249-41de9f0f8c23%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A44%3A56Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"821b346e-9bd1-48f4-92d2-02d6ed1f4dc6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/821b346e-9bd1-48f4-92d2-02d6ed1f4dc6/ticks/636910467337658293","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ead22ab9-dfcb-41cd-a221-8e89ed5288bd","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:25:33.7658293Z","submissionTimestamp":"2019-04-16T21:25:57.1081918Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"65d65556-50ac-4678-b41d-d068f6c82c89","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/65d65556-50ac-4678-b41d-d068f6c82c89/ticks/636910467017926179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3b9d6b78-e5ea-4f46-83cd-40a136258b53","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:25:01.7926179Z","submissionTimestamp":"2019-04-16T21:25:24.1483694Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"11a41ead-08a6-4d76-b73f-7c28a72e40fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/11a41ead-08a6-4d76-b73f-7c28a72e40fe/ticks/636910466900276922","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"158d6921-357b-4a24-87b3-3229a412161f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:50.0276922Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"011278a4-88aa-4dae-a55c-01beac6e67fd","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/011278a4-88aa-4dae-a55c-01beac6e67fd/ticks/636910466898176864","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:49.8176864Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"3daa8ddd-48a9-4de1-a329-8792f74eb1d7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3daa8ddd-48a9-4de1-a329-8792f74eb1d7/ticks/636910466887660652","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:48.7660652Z","submissionTimestamp":"2019-04-16T21:25:04.1091416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"1262c2f1-616f-4df4-a4b4-06adb857dcc9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/1262c2f1-616f-4df4-a4b4-06adb857dcc9/ticks/636910466860820276","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d03daf7b-a98d-4943-bc97-cac9cd7cb4a1"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:46.0820276Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc/ticks/636910466858835936","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0ac85c7-de12-489e-8906-869839914b9a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:45.8835936Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"58bd06d6-71cc-44a2-9e9e-4d5875806429","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/58bd06d6-71cc-44a2-9e9e-4d5875806429/ticks/636910466855486205","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5486205Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"2df5f926-66d3-4335-95e6-76bbec0e7965","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/2df5f926-66d3-4335-95e6-76bbec0e7965/ticks/636910466855103757","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5103757Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b1973c7e-c835-43d6-90d2-97a5ef9231b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b1973c7e-c835-43d6-90d2-97a5ef9231b3/ticks/636910466852672734","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.2672734Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"ea330e89-9120-4a5b-9d27-6d2e8f18fc2c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/ea330e89-9120-4a5b-9d27-6d2e8f18fc2c/ticks/636910466811013118","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:41.1013118Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e04eb8f3-c1b2-4d4c-af08-d9169426c995","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e04eb8f3-c1b2-4d4c-af08-d9169426c995/ticks/636910466806094205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"13085b33-ffba-44aa-b43a-c8d2f7c57b5a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:40.6094205Z","submissionTimestamp":"2019-04-16T21:25:04.0832796Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"fd58b695-7071-4f47-a85e-24f188d2d3c8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/fd58b695-7071-4f47-a85e-24f188d2d3c8/ticks/636910466802913179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1ac9f465-d576-4e6c-9cd4-777ec215c502","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7abab53b-09f7-472e-a413-466e4d1889b2\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:40.2913179Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00/ticks/636910466789838467","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"9eefb232-e25f-454b-99f4-3ae0ea8f51fc","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.9838467Z","submissionTimestamp":"2019-04-16T21:24:58.0912327Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288/ticks/636910466785108659","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.5108659Z","submissionTimestamp":"2019-04-16T21:24:54.1767706Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5ce26574-ae86-476a-9b57-69d6d6cd2dcb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/5ce26574-ae86-476a-9b57-69d6d6cd2dcb/ticks/636910466784798860","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3514976f-97cf-40e8-9c20-006ec91f5196","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.479886Z","submissionTimestamp":"2019-04-16T21:24:55.132022Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"9229c3dc-211b-4f62-bfce-c3265fa812cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9229c3dc-211b-4f62-bfce-c3265fa812cb/ticks/636910466729801205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"cda94719-8981-4c0b-9ee8-791e705aa681","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"03a8b6ba-df11-40f3-9e90-0e7cc8f1f185\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"799b3b7d-4a7a-4de4-b691-940591b8c991\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.9801205Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"6aee19e3-d4af-4b30-984b-09701437cc7b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6aee19e3-d4af-4b30-984b-09701437cc7b/ticks/636910466728437261","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8ca14f9a-fd21-4bfc-ab09-0f2429b26bc4","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ea145af4-6df7-4e42-8f9c-fbaf94929d25\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.8437261Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95/ticks/636910466727687210","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.768721Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"bbc062d8-0ca2-4258-8215-dfc7f7bf9d69","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/bbc062d8-0ca2-4258-8215-dfc7f7bf9d69/ticks/636910466726336957","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.6336957Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"78a8030e-fcd2-44d8-beeb-2a5ccefad658","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/78a8030e-fcd2-44d8-beeb-2a5ccefad658/ticks/636910466724786950","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0c20ca0b-412d-4ebc-9307-64c961ffc52f","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"66c1f01d-7193-431a-a3cc-46112a03a49a\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.478695Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"4ae8592d-5dcb-4ada-ad90-4c5044876a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ae8592d-5dcb-4ada-ad90-4c5044876a49/ticks/636910466696637304","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6637304Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0503be6e-0048-434b-abbc-1aa901c0e842","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/0503be6e-0048-434b-abbc-1aa901c0e842/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"babffc37-6bad-420a-b561-b9a6861898a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/babffc37-6bad-420a-b561-b9a6861898a8/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b836d58a-0929-4034-b07b-17f32d8aacd0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/b836d58a-0929-4034-b07b-17f32d8aacd0/ticks/636910466636052869","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:23.6052869Z","submissionTimestamp":"2019-04-16T21:24:45.1200053Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5d8c889d-9a9f-4c82-a3db-70540e54a11a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/5d8c889d-9a9f-4c82-a3db-70540e54a11a/ticks/636910466551852656","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:15.1852656Z","submissionTimestamp":"2019-04-16T21:24:35.1005206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '102234' + - '69363' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:59 GMT + - Tue, 30 Apr 2019 01:44:56 GMT expires: - '-1' pragma: @@ -1996,113 +1884,83 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A26%3A08Z%20and%20correlationId%20eq%20%2775da40a3-49de-4a41-a249-41de9f0f8c23%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A45%3A07Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"821b346e-9bd1-48f4-92d2-02d6ed1f4dc6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/821b346e-9bd1-48f4-92d2-02d6ed1f4dc6/ticks/636910467337658293","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ead22ab9-dfcb-41cd-a221-8e89ed5288bd","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:25:33.7658293Z","submissionTimestamp":"2019-04-16T21:25:57.1081918Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"65d65556-50ac-4678-b41d-d068f6c82c89","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/65d65556-50ac-4678-b41d-d068f6c82c89/ticks/636910467017926179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3b9d6b78-e5ea-4f46-83cd-40a136258b53","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:25:01.7926179Z","submissionTimestamp":"2019-04-16T21:25:24.1483694Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"11a41ead-08a6-4d76-b73f-7c28a72e40fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/11a41ead-08a6-4d76-b73f-7c28a72e40fe/ticks/636910466900276922","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"158d6921-357b-4a24-87b3-3229a412161f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:50.0276922Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"011278a4-88aa-4dae-a55c-01beac6e67fd","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/011278a4-88aa-4dae-a55c-01beac6e67fd/ticks/636910466898176864","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:49.8176864Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"3daa8ddd-48a9-4de1-a329-8792f74eb1d7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3daa8ddd-48a9-4de1-a329-8792f74eb1d7/ticks/636910466887660652","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:48.7660652Z","submissionTimestamp":"2019-04-16T21:25:04.1091416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"1262c2f1-616f-4df4-a4b4-06adb857dcc9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/1262c2f1-616f-4df4-a4b4-06adb857dcc9/ticks/636910466860820276","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d03daf7b-a98d-4943-bc97-cac9cd7cb4a1"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:46.0820276Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc/ticks/636910466858835936","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0ac85c7-de12-489e-8906-869839914b9a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:45.8835936Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"58bd06d6-71cc-44a2-9e9e-4d5875806429","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/58bd06d6-71cc-44a2-9e9e-4d5875806429/ticks/636910466855486205","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5486205Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"2df5f926-66d3-4335-95e6-76bbec0e7965","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/2df5f926-66d3-4335-95e6-76bbec0e7965/ticks/636910466855103757","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5103757Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b1973c7e-c835-43d6-90d2-97a5ef9231b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b1973c7e-c835-43d6-90d2-97a5ef9231b3/ticks/636910466852672734","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.2672734Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"ea330e89-9120-4a5b-9d27-6d2e8f18fc2c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/ea330e89-9120-4a5b-9d27-6d2e8f18fc2c/ticks/636910466811013118","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:41.1013118Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e04eb8f3-c1b2-4d4c-af08-d9169426c995","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e04eb8f3-c1b2-4d4c-af08-d9169426c995/ticks/636910466806094205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"13085b33-ffba-44aa-b43a-c8d2f7c57b5a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:40.6094205Z","submissionTimestamp":"2019-04-16T21:25:04.0832796Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"fd58b695-7071-4f47-a85e-24f188d2d3c8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/fd58b695-7071-4f47-a85e-24f188d2d3c8/ticks/636910466802913179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1ac9f465-d576-4e6c-9cd4-777ec215c502","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7abab53b-09f7-472e-a413-466e4d1889b2\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:40.2913179Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00/ticks/636910466789838467","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"9eefb232-e25f-454b-99f4-3ae0ea8f51fc","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.9838467Z","submissionTimestamp":"2019-04-16T21:24:58.0912327Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288/ticks/636910466785108659","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.5108659Z","submissionTimestamp":"2019-04-16T21:24:54.1767706Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5ce26574-ae86-476a-9b57-69d6d6cd2dcb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/5ce26574-ae86-476a-9b57-69d6d6cd2dcb/ticks/636910466784798860","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3514976f-97cf-40e8-9c20-006ec91f5196","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.479886Z","submissionTimestamp":"2019-04-16T21:24:55.132022Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"9229c3dc-211b-4f62-bfce-c3265fa812cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9229c3dc-211b-4f62-bfce-c3265fa812cb/ticks/636910466729801205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"cda94719-8981-4c0b-9ee8-791e705aa681","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"03a8b6ba-df11-40f3-9e90-0e7cc8f1f185\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"799b3b7d-4a7a-4de4-b691-940591b8c991\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.9801205Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"6aee19e3-d4af-4b30-984b-09701437cc7b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6aee19e3-d4af-4b30-984b-09701437cc7b/ticks/636910466728437261","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8ca14f9a-fd21-4bfc-ab09-0f2429b26bc4","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ea145af4-6df7-4e42-8f9c-fbaf94929d25\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.8437261Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95/ticks/636910466727687210","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.768721Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"bbc062d8-0ca2-4258-8215-dfc7f7bf9d69","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/bbc062d8-0ca2-4258-8215-dfc7f7bf9d69/ticks/636910466726336957","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.6336957Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"78a8030e-fcd2-44d8-beeb-2a5ccefad658","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/78a8030e-fcd2-44d8-beeb-2a5ccefad658/ticks/636910466724786950","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0c20ca0b-412d-4ebc-9307-64c961ffc52f","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"66c1f01d-7193-431a-a3cc-46112a03a49a\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.478695Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"4ae8592d-5dcb-4ada-ad90-4c5044876a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ae8592d-5dcb-4ada-ad90-4c5044876a49/ticks/636910466696637304","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6637304Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0503be6e-0048-434b-abbc-1aa901c0e842","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/0503be6e-0048-434b-abbc-1aa901c0e842/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"babffc37-6bad-420a-b561-b9a6861898a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/babffc37-6bad-420a-b561-b9a6861898a8/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b836d58a-0929-4034-b07b-17f32d8aacd0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/b836d58a-0929-4034-b07b-17f32d8aacd0/ticks/636910466636052869","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:23.6052869Z","submissionTimestamp":"2019-04-16T21:24:45.1200053Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5d8c889d-9a9f-4c82-a3db-70540e54a11a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/5d8c889d-9a9f-4c82-a3db-70540e54a11a/ticks/636910466551852656","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:15.1852656Z","submissionTimestamp":"2019-04-16T21:24:35.1005206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '102234' + - '69363' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:09 GMT + - Tue, 30 Apr 2019 01:45:06 GMT expires: - '-1' pragma: @@ -2136,117 +1994,83 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A26%3A19Z%20and%20correlationId%20eq%20%2775da40a3-49de-4a41-a249-41de9f0f8c23%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A45%3A17Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"2111b4ce-da71-4b71-b2cf-d3347b2b526a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/2111b4ce-da71-4b71-b2cf-d3347b2b526a/ticks/636910467504098790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"05e8803f-0cd2-4b86-bf8e-5f565ef0caf2","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:25:50.409879Z","submissionTimestamp":"2019-04-16T21:26:14.0783151Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"821b346e-9bd1-48f4-92d2-02d6ed1f4dc6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/821b346e-9bd1-48f4-92d2-02d6ed1f4dc6/ticks/636910467337658293","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ead22ab9-dfcb-41cd-a221-8e89ed5288bd","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:25:33.7658293Z","submissionTimestamp":"2019-04-16T21:25:57.1081918Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"65d65556-50ac-4678-b41d-d068f6c82c89","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/65d65556-50ac-4678-b41d-d068f6c82c89/ticks/636910467017926179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3b9d6b78-e5ea-4f46-83cd-40a136258b53","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:25:01.7926179Z","submissionTimestamp":"2019-04-16T21:25:24.1483694Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"11a41ead-08a6-4d76-b73f-7c28a72e40fe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/11a41ead-08a6-4d76-b73f-7c28a72e40fe/ticks/636910466900276922","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"158d6921-357b-4a24-87b3-3229a412161f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:50.0276922Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"011278a4-88aa-4dae-a55c-01beac6e67fd","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/011278a4-88aa-4dae-a55c-01beac6e67fd/ticks/636910466898176864","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:49.8176864Z","submissionTimestamp":"2019-04-16T21:25:14.1237154Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"3daa8ddd-48a9-4de1-a329-8792f74eb1d7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3daa8ddd-48a9-4de1-a329-8792f74eb1d7/ticks/636910466887660652","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:48.7660652Z","submissionTimestamp":"2019-04-16T21:25:04.1091416Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"1262c2f1-616f-4df4-a4b4-06adb857dcc9","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/1262c2f1-616f-4df4-a4b4-06adb857dcc9/ticks/636910466860820276","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d03daf7b-a98d-4943-bc97-cac9cd7cb4a1"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:46.0820276Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/e9b8c0e4-2f7b-48ac-aea6-6d20c7b416bc/ticks/636910466858835936","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0ac85c7-de12-489e-8906-869839914b9a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:24:45.8835936Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"58bd06d6-71cc-44a2-9e9e-4d5875806429","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab/events/58bd06d6-71cc-44a2-9e9e-4d5875806429/ticks/636910466855486205","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d70dd9c2-ef5e-4bd6-8675-062022b1cacc","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5486205Z","submissionTimestamp":"2019-04-16T21:25:08.0707936Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"2df5f926-66d3-4335-95e6-76bbec0e7965","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"520970b4-eb0e-4733-9688-fa0434012d02","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c/events/2df5f926-66d3-4335-95e6-76bbec0e7965/ticks/636910466855103757","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"e9ab5479-e9c5-4314-8f87-663c52b93e15","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.5103757Z","submissionTimestamp":"2019-04-16T21:25:09.0831527Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b1973c7e-c835-43d6-90d2-97a5ef9231b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/b1973c7e-c835-43d6-90d2-97a5ef9231b3/ticks/636910466852672734","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:45.2672734Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"ea330e89-9120-4a5b-9d27-6d2e8f18fc2c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"58ae03b2-6a83-42af-bc57-9a3cb165c893","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/ea330e89-9120-4a5b-9d27-6d2e8f18fc2c/ticks/636910466811013118","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3a5050b8-b148-466f-996a-3dc003959239","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:41.1013118Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"e04eb8f3-c1b2-4d4c-af08-d9169426c995","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e04eb8f3-c1b2-4d4c-af08-d9169426c995/ticks/636910466806094205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"13085b33-ffba-44aa-b43a-c8d2f7c57b5a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:40.6094205Z","submissionTimestamp":"2019-04-16T21:25:04.0832796Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"fd58b695-7071-4f47-a85e-24f188d2d3c8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/fd58b695-7071-4f47-a85e-24f188d2d3c8/ticks/636910466802913179","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1ac9f465-d576-4e6c-9cd4-777ec215c502","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7abab53b-09f7-472e-a413-466e4d1889b2\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"fd7485bc-01de-45b7-92dc-ec7c6956079f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:40.2913179Z","submissionTimestamp":"2019-04-16T21:25:04.1081404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/0a4ec2a2-474c-4dfe-bdbf-de0455b5cd00/ticks/636910466789838467","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"9eefb232-e25f-454b-99f4-3ae0ea8f51fc","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.9838467Z","submissionTimestamp":"2019-04-16T21:24:58.0912327Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57238800-69ed-4327-8472-fa9fb121e1bd","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/16ce71e3-0264-4fcf-9ce6-2cfd4c8f9288/ticks/636910466785108659","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"59429032-b115-4dd9-a0e5-9aa6b05e5706","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.5108659Z","submissionTimestamp":"2019-04-16T21:24:54.1767706Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5ce26574-ae86-476a-9b57-69d6d6cd2dcb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/5ce26574-ae86-476a-9b57-69d6d6cd2dcb/ticks/636910466784798860","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"3514976f-97cf-40e8-9c20-006ec91f5196","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:38.479886Z","submissionTimestamp":"2019-04-16T21:24:55.132022Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"9229c3dc-211b-4f62-bfce-c3265fa812cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9229c3dc-211b-4f62-bfce-c3265fa812cb/ticks/636910466729801205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"cda94719-8981-4c0b-9ee8-791e705aa681","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"03a8b6ba-df11-40f3-9e90-0e7cc8f1f185\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"799b3b7d-4a7a-4de4-b691-940591b8c991\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.9801205Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"6aee19e3-d4af-4b30-984b-09701437cc7b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/6aee19e3-d4af-4b30-984b-09701437cc7b/ticks/636910466728437261","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8ca14f9a-fd21-4bfc-ab09-0f2429b26bc4","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ea145af4-6df7-4e42-8f9c-fbaf94929d25\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"957e4786-fb4c-43d6-b210-1be0e2bf5fc9\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.8437261Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/f1f86e2f-f6a9-4e5d-a9e3-af06fb2c2e95/ticks/636910466727687210","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.768721Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"bbc062d8-0ca2-4258-8215-dfc7f7bf9d69","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/bbc062d8-0ca2-4258-8215-dfc7f7bf9d69/ticks/636910466726336957","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:32.6336957Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"78a8030e-fcd2-44d8-beeb-2a5ccefad658","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/78a8030e-fcd2-44d8-beeb-2a5ccefad658/ticks/636910466724786950","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0c20ca0b-412d-4ebc-9307-64c961ffc52f","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"66c1f01d-7193-431a-a3cc-46112a03a49a\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"59f55196-194e-4dbb-a1a9-c970f54f8f04\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:32.478695Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"4ae8592d-5dcb-4ada-ad90-4c5044876a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"ac2b3782-13e2-490d-8416-1eef24e6dff7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ae8592d-5dcb-4ada-ad90-4c5044876a49/ticks/636910466696637304","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"f152d5a3-d5a4-4cfc-bbe1-de6805aacd24","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6637304Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"0503be6e-0048-434b-abbc-1aa901c0e842","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"aa37d281-6304-4d5a-bce7-617257d91f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/0503be6e-0048-434b-abbc-1aa901c0e842/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b496084-d624-47e1-b0f2-bd6ec74c0205","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"babffc37-6bad-420a-b561-b9a6861898a8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"62898472-5a2c-492c-9746-f3c842abb7b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/babffc37-6bad-420a-b561-b9a6861898a8/ticks/636910466696587301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"4f92d699-2c6f-464c-8f3c-9de8238e190a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:29.6587301Z","submissionTimestamp":"2019-04-16T21:24:54.1747687Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"b836d58a-0929-4034-b07b-17f32d8aacd0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/b836d58a-0929-4034-b07b-17f32d8aacd0/ticks/636910466636052869","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:24:23.6052869Z","submissionTimestamp":"2019-04-16T21:24:45.1200053Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","description":"","eventDataId":"5d8c889d-9a9f-4c82-a3db-70540e54a11a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"faaa278c-608d-11e9-be2d-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH/events/5d8c889d-9a9f-4c82-a3db-70540e54a11a/ticks/636910466551852656","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:24:15.1852656Z","submissionTimestamp":"2019-04-16T21:24:35.1005206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '105810' + - '69363' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:20 GMT + - Tue, 30 Apr 2019 01:45:17 GMT expires: - '-1' pragma: @@ -2278,22 +2102,22 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461570283807454?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450182921499845?api-version=2018-05-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:24 GMT + - Tue, 30 Apr 2019 01:45:19 GMT expires: - '-1' pragma: @@ -2318,33 +2142,100 @@ interactions: - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A45%3A28Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","name":"vm_deploy_lIalAS4X24SQyw1ahv9FCuTpMZZNVVFH","properties":{"templateHash":"12488887103531937980","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:26:01.2701913Z","duration":"PT1M44.1733069S","correlationId":"75da40a3-49de-4a41-a249-41de9f0f8c23","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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '3808' + - '69363' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:24 GMT + - Tue, 30 Apr 2019 01:45:28 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: @@ -2361,96 +2252,102 @@ interactions: - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A45%3A38Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"694125a1-4b6d-4407-81c3-b86aacfc4de6\"\ - ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ - \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ - \ \"publisher\": \"microsoft-ads\",\r\n \"offer\": \"linux-data-science-vm-ubuntu\"\ - ,\r\n \"sku\": \"linuxdsvmubuntu\",\r\n \"version\": \"latest\"\ - \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"vm1_OsDisk_1_e732897467d948fab6ad90078e09707c\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c\"\ - \r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\":\ - \ \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab\"\ - \r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\"\ - : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ - \ \"computerName\": \"vm1\",\r\n \"adminUsername\": \"sdk-test-admin\"\ - ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\"\ - : [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ - : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ - }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ - : {\r\n \"computerName\": \"vm1\",\r\n \"osName\": \"ubuntu\",\r\ - \n \"osVersion\": \"16.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\"\ - : \"2.2.38\",\r\n \"statuses\": [\r\n {\r\n \"\ - code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\"\ - ,\r\n \"displayStatus\": \"Ready\",\r\n \"message\"\ - : \"Guest Agent is running\",\r\n \"time\": \"2019-04-16T21:26:22+00:00\"\ - \r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n \ - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_e732897467d948fab6ad90078e09707c\"\ - ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ - : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ - \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-16T21:25:12.6447243+00:00\"\r\n }\r\ - \n ]\r\n },\r\n {\r\n \"name\": \"vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab\"\ - ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ - : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ - \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-16T21:25:12.6447243+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\": \"2019-04-16T21:26:00.6919418+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 \"plan\": {\r\n \ - \ \"name\": \"linuxdsvmubuntu\",\r\n \"publisher\": \"microsoft-ads\"\ - ,\r\n \"product\": \"linux-data-science-vm-ubuntu\"\r\n },\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ - ,\r\n \"name\": \"vm1\"\r\n}" + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '4215' + - '69363' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:24 GMT + - Tue, 30 Apr 2019 01:45:38 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31940 status: code: 200 message: OK @@ -2465,65 +2362,100 @@ interactions: - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?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%202019-03-19T09%3A45%3A49Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ - ,\r\n \"etag\": \"W/\\\"ca782631-648b-42d9-acb5-58e263f1e6d4\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7abab53b-09f7-472e-a413-466e4d1889b2\"\ - ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ - ,\r\n \"etag\": \"W/\\\"ca782631-648b-42d9-acb5-58e263f1e6d4\\\"\"\ - ,\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/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ - \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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\": \"4rnbj0xxnvbe3d225oxzjeu3ef.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-31-F8-05\",\r\n \"enableAcceleratedNetworking\"\ - : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\ - \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ - \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\ - \n}" + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '2568' + - '69363' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:25 GMT - etag: - - W/"ca782631-648b-42d9-acb5-58e263f1e6d4" + - Tue, 30 Apr 2019 01:45:49 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: @@ -2543,47 +2475,28 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450182921499845?api-version=2018-05-01 response: body: - string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ - ,\r\n \"etag\": \"W/\\\"91e84b46-923f-46e1-bb5d-fed4ff505a5e\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"799b3b7d-4a7a-4de4-b691-940591b8c991\"\ - ,\r\n \"ipAddress\": \"40.118.201.183\",\r\n \"publicIPAddressVersion\"\ - : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ - \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ - \n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\ - \n }\r\n}" + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '1023' + - '20' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:25 GMT - etag: - - W/"91e84b46-923f-46e1-bb5d-fed4ff505a5e" + - Tue, 30 Apr 2019 01:45:50 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: @@ -2592,62 +2505,115 @@ interactions: code: 200 message: OK - request: - body: '{"commandId": "RunShellScript", "script": ["echo ''sudo waagent -deprovision+user - --force'' | at -M now + 1 minutes"], "parameters": []}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - vm run-command invoke + - vm create Connection: - keep-alive - Content-Length: - - '134' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -n --command-id --scripts + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/runCommand?api-version=2019-03-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%202019-03-19T09%3A45%3A59Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '' + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","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/providers/Microsoft.Compute/locations/westus/operations/c9fe6e73-1299-42d0-bf52-917785c7e4c6?api-version=2019-03-01 cache-control: - no-cache content-length: - - '0' + - '69363' + content-type: + - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:25 GMT + - Tue, 30 Apr 2019 01:45:59 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c9fe6e73-1299-42d0-bf52-917785c7e4c6?monitor=true&api-version=2019-03-01 pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1189 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2656,51 +2622,111 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm run-command invoke + - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n --command-id --scripts + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c9fe6e73-1299-42d0-bf52-917785c7e4c6?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A46%3A09Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:26:26.442103+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:26:44.1609733+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"properties\": {\r\n \"output\": {\"value\":[{\"code\":\"ProvisioningState/succeeded\"\ - ,\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\"\ - :\"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning: commands will be\ - \ executed using /bin/sh\\njob 1 at Tue Apr 16 21:27:00 2019\\n\"}]}\r\n \ - \ },\r\n \"name\": \"c9fe6e73-1299-42d0-bf52-917785c7e4c6\"\r\n}" + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"69d34777-eac4-4329-8649-98952ac2a038","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/69d34777-eac4-4329-8649-98952ac2a038/ticks/636921855449316526","level":"Error","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"InternalServerError","serviceRequestId":null,"statusMessage":"{\"error\":{\"code\":\"ServerClosedRequest\",\"message\":\"An + internal server error was encountered while processing request for ''Microsoft.Compute''. + Please try your request again later.\"}}"},"status":{"value":"Failed","localizedValue":"Failed"},"subStatus":{"value":"InternalServerError","localizedValue":"Internal + Server Error (HTTP Status Code: 500)"},"eventTimestamp":"2019-04-30T01:45:44.9316526Z","submissionTimestamp":"2019-04-30T01:46:09.0644376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '470' + - '73305' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:56 GMT + - Tue, 30 Apr 2019 01:46:09 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29912 status: code: 200 message: OK @@ -2712,47 +2738,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm run-command invoke + - vm create Connection: - keep-alive ParameterSetName: - - -g -n --command-id --scripts + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c9fe6e73-1299-42d0-bf52-917785c7e4c6?monitor=true&api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450182921499845?api-version=2018-05-01 response: body: - string: '{"value":[{"code":"ProvisioningState/succeeded","level":"Info","displayStatus":"Provisioning - succeeded","message":"Enable succeeded: \n[stdout]\n\n[stderr]\nwarning: commands - will be executed using /bin/sh\njob 1 at Tue Apr 16 21:27:00 2019\n"}]}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '246' + - '20' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:56 GMT + - Tue, 30 Apr 2019 01:46: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/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29911 status: code: 200 message: OK @@ -2764,52 +2781,114 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive - Content-Length: - - '0' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/deallocate?api-version=2019-03-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%202019-03-19T09%3A46%3A30Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: '' + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"69d34777-eac4-4329-8649-98952ac2a038","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/69d34777-eac4-4329-8649-98952ac2a038/ticks/636921855449316526","level":"Error","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"InternalServerError","serviceRequestId":null,"statusMessage":"{\"error\":{\"code\":\"ServerClosedRequest\",\"message\":\"An + internal server error was encountered while processing request for ''Microsoft.Compute''. + Please try your request again later.\"}}"},"status":{"value":"Failed","localizedValue":"Failed"},"subStatus":{"value":"InternalServerError","localizedValue":"Internal + Server Error (HTTP Status Code: 500)"},"eventTimestamp":"2019-04-30T01:45:44.9316526Z","submissionTimestamp":"2019-04-30T01:46:09.0644376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","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/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 cache-control: - no-cache content-length: - - '0' + - '73305' + content-type: + - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:07 GMT + - Tue, 30 Apr 2019 01:46:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?monitor=true&api-version=2019-03-01 pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1191 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2818,47 +2897,111 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A46%3A41Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"69d34777-eac4-4329-8649-98952ac2a038","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/69d34777-eac4-4329-8649-98952ac2a038/ticks/636921855449316526","level":"Error","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"InternalServerError","serviceRequestId":null,"statusMessage":"{\"error\":{\"code\":\"ServerClosedRequest\",\"message\":\"An + internal server error was encountered while processing request for ''Microsoft.Compute''. + Please try your request again later.\"}}"},"status":{"value":"Failed","localizedValue":"Failed"},"subStatus":{"value":"InternalServerError","localizedValue":"Internal + Server Error (HTTP Status Code: 500)"},"eventTimestamp":"2019-04-30T01:45:44.9316526Z","submissionTimestamp":"2019-04-30T01:46:09.0644376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '134' + - '73305' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:17 GMT + - Tue, 30 Apr 2019 01:46:41 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29895 status: code: 200 message: OK @@ -2870,47 +3013,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450182921499845?api-version=2018-05-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '134' + - '20' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:53 GMT + - Tue, 30 Apr 2019 01:46: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 - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29885 status: code: 200 message: OK @@ -2922,47 +3056,114 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A46%3A51Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"8d4f58aa-a813-49d7-b4b2-51079a16cd5d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"84ecb73b-1316-460a-b67c-8e3e1f795b41","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/8d4f58aa-a813-49d7-b4b2-51079a16cd5d/ticks/636921855971223080","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:37.122308Z","submissionTimestamp":"2019-04-30T01:46:51.0796715Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"69d34777-eac4-4329-8649-98952ac2a038","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/69d34777-eac4-4329-8649-98952ac2a038/ticks/636921855449316526","level":"Error","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"InternalServerError","serviceRequestId":null,"statusMessage":"{\"error\":{\"code\":\"ServerClosedRequest\",\"message\":\"An + internal server error was encountered while processing request for ''Microsoft.Compute''. + Please try your request again later.\"}}"},"status":{"value":"Failed","localizedValue":"Failed"},"subStatus":{"value":"InternalServerError","localizedValue":"Internal + Server Error (HTTP Status Code: 500)"},"eventTimestamp":"2019-04-30T01:45:44.9316526Z","submissionTimestamp":"2019-04-30T01:46:09.0644376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '134' + - '76913' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:29:23 GMT + - Tue, 30 Apr 2019 01:46:51 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29876 status: code: 200 message: OK @@ -2974,47 +3175,126 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A47%3A02Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"96725487-075c-4aea-8d93-88c6f00bbf85","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"84ecb73b-1316-460a-b67c-8e3e1f795b41","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/96725487-075c-4aea-8d93-88c6f00bbf85/ticks/636921856058248526","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a35585b5-2386-4dd2-a316-c5db9cf8d772"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:46:45.8248526Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"07bd91ef-4cee-497b-af6f-54bd21e7a9b2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/07bd91ef-4cee-497b-af6f-54bd21e7a9b2/ticks/636921856056189808","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:45.6189808Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3b4e9fd6-75c1-48de-bdc8-e2373cef53ff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3b4e9fd6-75c1-48de-bdc8-e2373cef53ff/ticks/636921856044819934","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:44.4819934Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"09ece038-3982-4f70-a369-3b96afff8767","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/09ece038-3982-4f70-a369-3b96afff8767/ticks/636921856001415531","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.1415531Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"8d4f58aa-a813-49d7-b4b2-51079a16cd5d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"84ecb73b-1316-460a-b67c-8e3e1f795b41","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/8d4f58aa-a813-49d7-b4b2-51079a16cd5d/ticks/636921855971223080","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:37.122308Z","submissionTimestamp":"2019-04-30T01:46:51.0796715Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"69d34777-eac4-4329-8649-98952ac2a038","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/69d34777-eac4-4329-8649-98952ac2a038/ticks/636921855449316526","level":"Error","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"InternalServerError","serviceRequestId":null,"statusMessage":"{\"error\":{\"code\":\"ServerClosedRequest\",\"message\":\"An + internal server error was encountered while processing request for ''Microsoft.Compute''. + Please try your request again later.\"}}"},"status":{"value":"Failed","localizedValue":"Failed"},"subStatus":{"value":"InternalServerError","localizedValue":"Internal + Server Error (HTTP Status Code: 500)"},"eventTimestamp":"2019-04-30T01:45:44.9316526Z","submissionTimestamp":"2019-04-30T01:46:09.0644376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '134' + - '91156' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:29:54 GMT + - Tue, 30 Apr 2019 01:47:02 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29867 status: code: 200 message: OK @@ -3026,47 +3306,179 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A47%3A13Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"96725487-075c-4aea-8d93-88c6f00bbf85","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"84ecb73b-1316-460a-b67c-8e3e1f795b41","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/96725487-075c-4aea-8d93-88c6f00bbf85/ticks/636921856058248526","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a35585b5-2386-4dd2-a316-c5db9cf8d772"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:46:45.8248526Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"07bd91ef-4cee-497b-af6f-54bd21e7a9b2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/07bd91ef-4cee-497b-af6f-54bd21e7a9b2/ticks/636921856056189808","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:45.6189808Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3b4e9fd6-75c1-48de-bdc8-e2373cef53ff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3b4e9fd6-75c1-48de-bdc8-e2373cef53ff/ticks/636921856044819934","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:44.4819934Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ac222633-c230-4de8-b029-f2565fcdbf3a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e/events/ac222633-c230-4de8-b029-f2565fcdbf3a/ticks/636921856008089741","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"67507cc1-849e-46b6-81da-39e0786e962c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"5e494105-6a07-4c2d-913f-c57bfc9d766c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:46:40.8089741Z","submissionTimestamp":"2019-04-30T01:47:05.142602Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"25ab4481-bd9e-4c2b-bd61-c4647357cd7c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9/events/25ab4481-bd9e-4c2b-bd61-c4647357cd7c/ticks/636921856008043666","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"95c11b5a-422c-4fe7-a5db-f75064d219a6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"c1535758-18d2-4bd3-823d-960720755d3c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:46:40.8043666Z","submissionTimestamp":"2019-04-30T01:47:03.0815204Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"cbf55ecd-516e-4b96-80e1-f3d1dddded97","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e/events/cbf55ecd-516e-4b96-80e1-f3d1dddded97/ticks/636921856005589374","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"67507cc1-849e-46b6-81da-39e0786e962c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.5589374Z","submissionTimestamp":"2019-04-30T01:47:05.142602Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0824034d-0aff-4ca1-95e0-1b4127845a02","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9/events/0824034d-0aff-4ca1-95e0-1b4127845a02/ticks/636921856005243270","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"95c11b5a-422c-4fe7-a5db-f75064d219a6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.524327Z","submissionTimestamp":"2019-04-30T01:47:03.0815204Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"09ece038-3982-4f70-a369-3b96afff8767","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/09ece038-3982-4f70-a369-3b96afff8767/ticks/636921856001415531","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.1415531Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"8d4f58aa-a813-49d7-b4b2-51079a16cd5d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"84ecb73b-1316-460a-b67c-8e3e1f795b41","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/8d4f58aa-a813-49d7-b4b2-51079a16cd5d/ticks/636921855971223080","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:37.122308Z","submissionTimestamp":"2019-04-30T01:46:51.0796715Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"69d34777-eac4-4329-8649-98952ac2a038","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/69d34777-eac4-4329-8649-98952ac2a038/ticks/636921855449316526","level":"Error","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"InternalServerError","serviceRequestId":null,"statusMessage":"{\"error\":{\"code\":\"ServerClosedRequest\",\"message\":\"An + internal server error was encountered while processing request for ''Microsoft.Compute''. + Please try your request again later.\"}}"},"status":{"value":"Failed","localizedValue":"Failed"},"subStatus":{"value":"InternalServerError","localizedValue":"Internal + Server Error (HTTP Status Code: 500)"},"eventTimestamp":"2019-04-30T01:45:44.9316526Z","submissionTimestamp":"2019-04-30T01:46:09.0644376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '134' + - '102669' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:30:24 GMT + - Tue, 30 Apr 2019 01:47:12 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --admin-username --admin-password + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450182921499845?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: + - Tue, 30 Apr 2019 01:47:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29861 status: code: 200 message: OK @@ -3078,47 +3490,140 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A47%3A23Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"6eb9eba2-cc4f-41e3-9537-2e84e6d31ea6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6eb9eba2-cc4f-41e3-9537-2e84e6d31ea6/ticks/636921856173379136","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"72b93a81-0ccf-426a-be3e-42126cdd82d6","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:57.3379136Z","submissionTimestamp":"2019-04-30T01:47:12.0957995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"96725487-075c-4aea-8d93-88c6f00bbf85","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"84ecb73b-1316-460a-b67c-8e3e1f795b41","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/96725487-075c-4aea-8d93-88c6f00bbf85/ticks/636921856058248526","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a35585b5-2386-4dd2-a316-c5db9cf8d772"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:46:45.8248526Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"07bd91ef-4cee-497b-af6f-54bd21e7a9b2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/07bd91ef-4cee-497b-af6f-54bd21e7a9b2/ticks/636921856056189808","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:45.6189808Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3b4e9fd6-75c1-48de-bdc8-e2373cef53ff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3b4e9fd6-75c1-48de-bdc8-e2373cef53ff/ticks/636921856044819934","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:44.4819934Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ac222633-c230-4de8-b029-f2565fcdbf3a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e/events/ac222633-c230-4de8-b029-f2565fcdbf3a/ticks/636921856008089741","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"67507cc1-849e-46b6-81da-39e0786e962c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"5e494105-6a07-4c2d-913f-c57bfc9d766c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:46:40.8089741Z","submissionTimestamp":"2019-04-30T01:47:05.142602Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"25ab4481-bd9e-4c2b-bd61-c4647357cd7c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9/events/25ab4481-bd9e-4c2b-bd61-c4647357cd7c/ticks/636921856008043666","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"95c11b5a-422c-4fe7-a5db-f75064d219a6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"c1535758-18d2-4bd3-823d-960720755d3c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:46:40.8043666Z","submissionTimestamp":"2019-04-30T01:47:03.0815204Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"cbf55ecd-516e-4b96-80e1-f3d1dddded97","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e/events/cbf55ecd-516e-4b96-80e1-f3d1dddded97/ticks/636921856005589374","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"67507cc1-849e-46b6-81da-39e0786e962c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.5589374Z","submissionTimestamp":"2019-04-30T01:47:05.142602Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0824034d-0aff-4ca1-95e0-1b4127845a02","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9/events/0824034d-0aff-4ca1-95e0-1b4127845a02/ticks/636921856005243270","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"95c11b5a-422c-4fe7-a5db-f75064d219a6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.524327Z","submissionTimestamp":"2019-04-30T01:47:03.0815204Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"09ece038-3982-4f70-a369-3b96afff8767","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/09ece038-3982-4f70-a369-3b96afff8767/ticks/636921856001415531","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.1415531Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"8d4f58aa-a813-49d7-b4b2-51079a16cd5d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"84ecb73b-1316-460a-b67c-8e3e1f795b41","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/8d4f58aa-a813-49d7-b4b2-51079a16cd5d/ticks/636921855971223080","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:37.122308Z","submissionTimestamp":"2019-04-30T01:46:51.0796715Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"69d34777-eac4-4329-8649-98952ac2a038","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/69d34777-eac4-4329-8649-98952ac2a038/ticks/636921855449316526","level":"Error","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"InternalServerError","serviceRequestId":null,"statusMessage":"{\"error\":{\"code\":\"ServerClosedRequest\",\"message\":\"An + internal server error was encountered while processing request for ''Microsoft.Compute''. + Please try your request again later.\"}}"},"status":{"value":"Failed","localizedValue":"Failed"},"subStatus":{"value":"InternalServerError","localizedValue":"Internal + Server Error (HTTP Status Code: 500)"},"eventTimestamp":"2019-04-30T01:45:44.9316526Z","submissionTimestamp":"2019-04-30T01:46:09.0644376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '134' + - '106248' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:30:57 GMT + - Tue, 30 Apr 2019 01:47:23 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29854 status: code: 200 message: OK @@ -3130,47 +3635,140 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A47%3A34Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"6eb9eba2-cc4f-41e3-9537-2e84e6d31ea6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6eb9eba2-cc4f-41e3-9537-2e84e6d31ea6/ticks/636921856173379136","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"72b93a81-0ccf-426a-be3e-42126cdd82d6","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:57.3379136Z","submissionTimestamp":"2019-04-30T01:47:12.0957995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"96725487-075c-4aea-8d93-88c6f00bbf85","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"84ecb73b-1316-460a-b67c-8e3e1f795b41","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/96725487-075c-4aea-8d93-88c6f00bbf85/ticks/636921856058248526","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a35585b5-2386-4dd2-a316-c5db9cf8d772"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:46:45.8248526Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"07bd91ef-4cee-497b-af6f-54bd21e7a9b2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/07bd91ef-4cee-497b-af6f-54bd21e7a9b2/ticks/636921856056189808","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:45.6189808Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3b4e9fd6-75c1-48de-bdc8-e2373cef53ff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3b4e9fd6-75c1-48de-bdc8-e2373cef53ff/ticks/636921856044819934","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:44.4819934Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ac222633-c230-4de8-b029-f2565fcdbf3a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e/events/ac222633-c230-4de8-b029-f2565fcdbf3a/ticks/636921856008089741","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"67507cc1-849e-46b6-81da-39e0786e962c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"5e494105-6a07-4c2d-913f-c57bfc9d766c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:46:40.8089741Z","submissionTimestamp":"2019-04-30T01:47:05.142602Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"25ab4481-bd9e-4c2b-bd61-c4647357cd7c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9/events/25ab4481-bd9e-4c2b-bd61-c4647357cd7c/ticks/636921856008043666","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"95c11b5a-422c-4fe7-a5db-f75064d219a6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"c1535758-18d2-4bd3-823d-960720755d3c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:46:40.8043666Z","submissionTimestamp":"2019-04-30T01:47:03.0815204Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"cbf55ecd-516e-4b96-80e1-f3d1dddded97","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e/events/cbf55ecd-516e-4b96-80e1-f3d1dddded97/ticks/636921856005589374","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"67507cc1-849e-46b6-81da-39e0786e962c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.5589374Z","submissionTimestamp":"2019-04-30T01:47:05.142602Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0824034d-0aff-4ca1-95e0-1b4127845a02","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9/events/0824034d-0aff-4ca1-95e0-1b4127845a02/ticks/636921856005243270","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"95c11b5a-422c-4fe7-a5db-f75064d219a6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.524327Z","submissionTimestamp":"2019-04-30T01:47:03.0815204Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"09ece038-3982-4f70-a369-3b96afff8767","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/09ece038-3982-4f70-a369-3b96afff8767/ticks/636921856001415531","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.1415531Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"8d4f58aa-a813-49d7-b4b2-51079a16cd5d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"84ecb73b-1316-460a-b67c-8e3e1f795b41","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/8d4f58aa-a813-49d7-b4b2-51079a16cd5d/ticks/636921855971223080","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:37.122308Z","submissionTimestamp":"2019-04-30T01:46:51.0796715Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"69d34777-eac4-4329-8649-98952ac2a038","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/69d34777-eac4-4329-8649-98952ac2a038/ticks/636921855449316526","level":"Error","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"InternalServerError","serviceRequestId":null,"statusMessage":"{\"error\":{\"code\":\"ServerClosedRequest\",\"message\":\"An + internal server error was encountered while processing request for ''Microsoft.Compute''. + Please try your request again later.\"}}"},"status":{"value":"Failed","localizedValue":"Failed"},"subStatus":{"value":"InternalServerError","localizedValue":"Internal + Server Error (HTTP Status Code: 500)"},"eventTimestamp":"2019-04-30T01:45:44.9316526Z","submissionTimestamp":"2019-04-30T01:46:09.0644376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '134' + - '106248' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:31:26 GMT + - Tue, 30 Apr 2019 01:47:33 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29845 status: code: 200 message: OK @@ -3182,47 +3780,187 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A47%3A44Z%20and%20correlationId%20eq%20%275760dbe3-517c-4606-8c3a-310c6ee1a49e%27 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0c285ae0-4bbc-4dc7-97a0-0eb8bb5c111b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/0c285ae0-4bbc-4dc7-97a0-0eb8bb5c111b/ticks/636921856473661018","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8d6174e0-f2a6-495a-ad0b-e1d58955c64a","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:47:27.3661018Z","submissionTimestamp":"2019-04-30T01:47:40.0604954Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"6eb9eba2-cc4f-41e3-9537-2e84e6d31ea6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6eb9eba2-cc4f-41e3-9537-2e84e6d31ea6/ticks/636921856173379136","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"72b93a81-0ccf-426a-be3e-42126cdd82d6","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:57.3379136Z","submissionTimestamp":"2019-04-30T01:47:12.0957995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"96725487-075c-4aea-8d93-88c6f00bbf85","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"84ecb73b-1316-460a-b67c-8e3e1f795b41","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/96725487-075c-4aea-8d93-88c6f00bbf85/ticks/636921856058248526","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a35585b5-2386-4dd2-a316-c5db9cf8d772"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:46:45.8248526Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"07bd91ef-4cee-497b-af6f-54bd21e7a9b2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/07bd91ef-4cee-497b-af6f-54bd21e7a9b2/ticks/636921856056189808","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:45.6189808Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3b4e9fd6-75c1-48de-bdc8-e2373cef53ff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/3b4e9fd6-75c1-48de-bdc8-e2373cef53ff/ticks/636921856044819934","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:44.4819934Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ac222633-c230-4de8-b029-f2565fcdbf3a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e/events/ac222633-c230-4de8-b029-f2565fcdbf3a/ticks/636921856008089741","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"67507cc1-849e-46b6-81da-39e0786e962c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"5e494105-6a07-4c2d-913f-c57bfc9d766c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:46:40.8089741Z","submissionTimestamp":"2019-04-30T01:47:05.142602Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"25ab4481-bd9e-4c2b-bd61-c4647357cd7c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9/events/25ab4481-bd9e-4c2b-bd61-c4647357cd7c/ticks/636921856008043666","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"95c11b5a-422c-4fe7-a5db-f75064d219a6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"c1535758-18d2-4bd3-823d-960720755d3c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:46:40.8043666Z","submissionTimestamp":"2019-04-30T01:47:03.0815204Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"cbf55ecd-516e-4b96-80e1-f3d1dddded97","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e/events/cbf55ecd-516e-4b96-80e1-f3d1dddded97/ticks/636921856005589374","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"67507cc1-849e-46b6-81da-39e0786e962c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.5589374Z","submissionTimestamp":"2019-04-30T01:47:05.142602Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0824034d-0aff-4ca1-95e0-1b4127845a02","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2b3252a6-2606-4539-a992-25c339d63c9a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9/events/0824034d-0aff-4ca1-95e0-1b4127845a02/ticks/636921856005243270","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"95c11b5a-422c-4fe7-a5db-f75064d219a6","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.524327Z","submissionTimestamp":"2019-04-30T01:47:03.0815204Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"09ece038-3982-4f70-a369-3b96afff8767","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/09ece038-3982-4f70-a369-3b96afff8767/ticks/636921856001415531","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:40.1415531Z","submissionTimestamp":"2019-04-30T01:47:01.0670073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"8d4f58aa-a813-49d7-b4b2-51079a16cd5d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"84ecb73b-1316-460a-b67c-8e3e1f795b41","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/8d4f58aa-a813-49d7-b4b2-51079a16cd5d/ticks/636921855971223080","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7d4a49a3-4d6d-4111-851c-96c273146a5b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:46:37.122308Z","submissionTimestamp":"2019-04-30T01:46:51.0796715Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"69d34777-eac4-4329-8649-98952ac2a038","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/69d34777-eac4-4329-8649-98952ac2a038/ticks/636921855449316526","level":"Error","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"InternalServerError","serviceRequestId":null,"statusMessage":"{\"error\":{\"code\":\"ServerClosedRequest\",\"message\":\"An + internal server error was encountered while processing request for ''Microsoft.Compute''. + Please try your request again later.\"}}"},"status":{"value":"Failed","localizedValue":"Failed"},"subStatus":{"value":"InternalServerError","localizedValue":"Internal + Server Error (HTTP Status Code: 500)"},"eventTimestamp":"2019-04-30T01:45:44.9316526Z","submissionTimestamp":"2019-04-30T01:46:09.0644376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"b457a769-af16-4076-951e-8118c8421e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/b457a769-af16-4076-951e-8118c8421e95/ticks/636921854133765543","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fb5c6d3d-79b4-42ca-bac0-90d5eae897ae","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3765543Z","submissionTimestamp":"2019-04-30T01:43:55.1078452Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"a16364ec-9d8b-47b6-b9db-23c94dd1b97f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a16364ec-9d8b-47b6-b9db-23c94dd1b97f/ticks/636921854133736769","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"a66a86b3-ffd9-4d22-bee8-f9f39993eb86","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.3736769Z","submissionTimestamp":"2019-04-30T01:43:53.0783993Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e98d0fed-990a-44ba-ba9a-7240780597a7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/4b01a79c-f3f9-40c2-8c4d-23ccbf1ff832/ticks/636921854130462605","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"83f130c2-4a8b-4f8b-b94c-904fff9f5b9c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:33.0462605Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"ee54b5db-cf59-4a8b-9420-9742e85a8015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/ee54b5db-cf59-4a8b-9420-9742e85a8015/ticks/636921854122036301","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"36f7230f-8835-47b5-9fa1-bbfacb752828","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:32.2036301Z","submissionTimestamp":"2019-04-30T01:43:53.0773981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"0fd9da75-484a-4d8a-a192-53d260a7d864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/0fd9da75-484a-4d8a-a192-53d260a7d864/ticks/636921854120512839","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"9f65eb4e-574c-4fbe-b0bd-a9cd0c8e8718","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"92895602-8e20-432e-8635-ea7642230598\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"36230cf4-9ac4-4c44-ae8b-f3a1cb93d98f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:32.0512839Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1773003-70bf-48d5-a050-8d513c4c202f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/da2ab6b7-0dcf-4aff-8d77-52b577b9eb6a/ticks/636921854104708550","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8022880d-2673-4b45-9822-45a3143e3aed","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:30.470855Z","submissionTimestamp":"2019-04-30T01:43:59.0681125Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"1af88cb4-efa5-46b3-b2c1-2be47f5569e8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/1af88cb4-efa5-46b3-b2c1-2be47f5569e8/ticks/636921854052936039","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"abdbe3e8-bc56-4366-a057-f4ff028dbad9","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"c99ecaf1-eb5f-454f-ab17-f8523535c82e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d93d2898-f0eb-4ada-884c-05486dcaf4c4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.2936039Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"4ab85204-4bbf-4012-bf29-b768f34c1ee0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/4ab85204-4bbf-4012-bf29-b768f34c1ee0/ticks/636921854051385777","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"05fcb2de-81fd-4a70-bced-4ac8ab7c412d","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"99aed714-6dfe-4f8f-a13e-b02a5b52b906\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"5aa53d69-8164-4128-9d2f-acaea3a1f7f5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:25.1385777Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"01604e00-755c-4a67-9026-bdbcc52af18a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/01604e00-755c-4a67-9026-bdbcc52af18a/ticks/636921854050785802","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:25.0785802Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9d22021f-b6bb-49a1-9130-4c41f444fc60","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/9d22021f-b6bb-49a1-9130-4c41f444fc60/ticks/636921854049236108","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:24.9236108Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"999a9acc-6873-4ff2-9525-b1700658ceff","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/999a9acc-6873-4ff2-9525-b1700658ceff/ticks/636921854046136102","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f5b9e98e-8a19-4de6-aad4-23eb57256677","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8d4d144b-5101-492a-baa0-7a11272a9ca5\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"aa42d9c5-125a-44f2-9a33-7a1f5f0c5cef\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:24.6136102Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"53f3117b-2eba-493a-b157-2a000eb82086","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"307b6057-3343-4f3b-ae9a-b29bcc69ad72","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/53f3117b-2eba-493a-b157-2a000eb82086/ticks/636921854016963408","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b98d18f7-2b3a-4b84-ba02-c3e88003d437","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6963408Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3d5c8821-2d03-403c-b589-cb20c14e5bc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60f0faba-9d60-4adc-b5a9-8223c0f07981","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/3d5c8821-2d03-403c-b589-cb20c14e5bc1/ticks/636921854016763392","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c65eb3dc-1e55-49ea-a06c-b04e9e2ce18f","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\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6763392Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"9b96137f-2e4a-40a4-8e1d-881f46dc7aa2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"59fadeab-ad42-4f6a-b6fc-3eac65b41c88","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/9b96137f-2e4a-40a4-8e1d-881f46dc7aa2/ticks/636921854016713396","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"90d645cd-3d70-4843-bb8b-9fa8bbb462e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:21.6713396Z","submissionTimestamp":"2019-04-30T01:43:49.0752073Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"3a00b87f-b8a0-4fad-aee8-3c98486a5e49","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/3a00b87f-b8a0-4fad-aee8-3c98486a5e49/ticks/636921853990805790","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:43:19.080579Z","submissionTimestamp":"2019-04-30T01:43:38.0981383Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","description":"","eventDataId":"f2f98b12-4fed-4dc4-bbdd-9e93b81f520c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4f42a4ee-6ae9-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN/events/f2f98b12-4fed-4dc4-bbdd-9e93b81f520c/ticks/636921853915055206","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:43:11.5055206Z","submissionTimestamp":"2019-04-30T01:43:38.0971376Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '134' + - '109827' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:31:57 GMT + - Tue, 30 Apr 2019 01:47:44 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --admin-username --admin-password + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450182921499845?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: + - Tue, 30 Apr 2019 01:47:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29834 status: code: 200 message: OK @@ -3234,47 +3972,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","name":"vm_deploy_mLsentiQliC09VWyrGLZpNpxUkF3OlCN","properties":{"templateHash":"17583355368149451316","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:47:31.6501Z","duration":"PT4M18.3224562S","correlationId":"5760dbe3-517c-4606-8c3a-310c6ee1a49e","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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '134' + - '3805' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:32:27 GMT + - Tue, 30 Apr 2019 01:47:51 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;14950,Microsoft.Compute/GetOperation30Min;29826 status: code: 200 message: OK @@ -3286,30 +4015,82 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: "{\r\n \"properties\": {\r\n \"vmId\": \"e6bf9efa-7380-4e3d-8a2b-8bd366fa46ca\"\ + ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ + \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ + \ \"publisher\": \"microsoft-ads\",\r\n \"offer\": \"linux-data-science-vm-ubuntu\"\ + ,\r\n \"sku\": \"linuxdsvmubuntu\",\r\n \"version\": \"latest\"\ + \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ + \ \"name\": \"vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9\"\ + \r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n \"dataDisks\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e\"\ + ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\":\ + \ \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ + : \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e\"\ + \r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\"\ + : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ + \ \"computerName\": \"vm1\",\r\n \"adminUsername\": \"sdk-test-admin\"\ + ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ + : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\"\ + : [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ + : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ + }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ + : {\r\n \"computerName\": \"vm1\",\r\n \"osName\": \"ubuntu\",\r\ + \n \"osVersion\": \"16.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\"\ + : \"2.2.40\",\r\n \"statuses\": [\r\n {\r\n \"\ + code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\"\ + ,\r\n \"displayStatus\": \"Ready\",\r\n \"message\"\ + : \"Guest Agent is running\",\r\n \"time\": \"2019-04-30T01:47:51+00:00\"\ + \r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n \ + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9\"\ + ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ + : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ + \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ + \ \"time\": \"2019-04-30T01:46:41.6370063+00:00\"\r\n }\r\ + \n ]\r\n },\r\n {\r\n \"name\": \"vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e\"\ + ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ + : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ + \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ + \ \"time\": \"2019-04-30T01:46:41.6370063+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\": \"2019-04-30T01:47:29.121397+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 \"plan\": {\r\n \ + \ \"name\": \"linuxdsvmubuntu\",\r\n \"publisher\": \"microsoft-ads\"\ + ,\r\n \"product\": \"linux-data-science-vm-ubuntu\"\r\n },\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ + ,\r\n \"name\": \"vm1\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '4214' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:32:57 GMT + - Tue, 30 Apr 2019 01:47:52 GMT expires: - '-1' pragma: @@ -3326,7 +4107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29816 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31994 status: code: 200 message: OK @@ -3338,30 +4119,55 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\ + ,\r\n \"etag\": \"W/\\\"e3d6ad85-c10e-4f74-a4e6-18db3d4aa134\\\"\",\r\n \ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"92895602-8e20-432e-8635-ea7642230598\"\ + ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ + ,\r\n \"etag\": \"W/\\\"e3d6ad85-c10e-4f74-a4e6-18db3d4aa134\\\"\"\ + ,\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/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ + \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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\": \"ctl03gp4nwhu5ij4wavfwuvzag.dx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-37-E0-D6\",\r\n \"enableAcceleratedNetworking\"\ + : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\ + \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ + \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\ + \n}" headers: cache-control: - no-cache content-length: - - '134' + - '2568' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:33:28 GMT + - Tue, 30 Apr 2019 01:47:52 GMT + etag: + - W/"e3d6ad85-c10e-4f74-a4e6-18db3d4aa134" expires: - '-1' pragma: @@ -3377,8 +4183,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29805 status: code: 200 message: OK @@ -3390,30 +4194,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm create Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --image --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\ + ,\r\n \"etag\": \"W/\\\"399bf24f-6589-4708-9a72-512eec864506\\\"\",\r\n \ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d93d2898-f0eb-4ada-884c-05486dcaf4c4\"\ + ,\r\n \"ipAddress\": \"40.112.183.54\",\r\n \"publicIPAddressVersion\"\ + : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\"\ + : 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\ + \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ + \n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\ + \n }\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '1022' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:33:58 GMT + - Tue, 30 Apr 2019 01:47:52 GMT + etag: + - W/"399bf24f-6589-4708-9a72-512eec864506" expires: - '-1' pragma: @@ -3429,45 +4245,50 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29796 status: code: 200 message: OK - request: - body: null + body: '{"commandId": "RunShellScript", "script": ["echo ''sudo waagent -deprovision+user + --force'' | at -M now + 1 minutes"], "parameters": []}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm run-command invoke Connection: - keep-alive + Content-Length: + - '134' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g -n --command-id --scripts User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/runCommand?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f089b8ca-b3ea-4739-ba8d-e6b87ee68b88?api-version=2019-03-01 cache-control: - no-cache content-length: - - '134' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 16 Apr 2019 21:34:28 GMT + - Tue, 30 Apr 2019 01:47:53 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f089b8ca-b3ea-4739-ba8d-e6b87ee68b88?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -3475,17 +4296,15 @@ interactions: - 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;14940,Microsoft.Compute/GetOperation30Min;29782 + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3494,30 +4313,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm run-command invoke Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --command-id --scripts User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f089b8ca-b3ea-4739-ba8d-e6b87ee68b88?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:47:53.980742+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:48:13.9807664+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"properties\": {\r\n \"output\": {\r\n \"value\": [\r\n {\r\ + \n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"\ + Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"\ + message\": \"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning: commands\ + \ will be executed using /bin/sh\\njob 1 at Tue Apr 30 01:49:00 2019\\n\"\r\ + \n }\r\n ]\r\n}\r\n },\r\n \"name\": \"f089b8ca-b3ea-4739-ba8d-e6b87ee68b88\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '529' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:34:58 GMT + - Tue, 30 Apr 2019 01:48:24 GMT expires: - '-1' pragma: @@ -3534,7 +4359,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14941,Microsoft.Compute/GetOperation30Min;29775 + - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29987 status: code: 200 message: OK @@ -3546,30 +4371,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm deallocate + - vm run-command invoke Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --command-id --scripts User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f089b8ca-b3ea-4739-ba8d-e6b87ee68b88?monitor=true&api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: '{"value":[{"code":"ProvisioningState/succeeded","level":"Info","displayStatus":"Provisioning + succeeded","message":"Enable succeeded: \n[stdout]\n\n[stderr]\nwarning: commands + will be executed using /bin/sh\njob 1 at Tue Apr 30 01:49:00 2019\n"}]}' headers: cache-control: - no-cache content-length: - - '134' + - '246' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:35:29 GMT + - Tue, 30 Apr 2019 01:48:24 GMT expires: - '-1' pragma: @@ -3586,7 +4411,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14936,Microsoft.Compute/GetOperation30Min;29762 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986 status: code: 200 message: OK @@ -3601,29 +4426,33 @@ interactions: - vm deallocate Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/deallocate?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ - \r\n}" + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/88ac4828-0698-421d-bae4-b10536c4d96c?api-version=2019-03-01 cache-control: - no-cache content-length: - - '134' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 16 Apr 2019 21:35:58 GMT + - Tue, 30 Apr 2019 01:49:35 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/88ac4828-0698-421d-bae4-b10536c4d96c?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -3631,17 +4460,15 @@ interactions: - 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;14937,Microsoft.Compute/GetOperation30Min;29753 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3656,14 +4483,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/88ac4828-0698-421d-bae4-b10536c4d96c?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:49:35.8870325+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"88ac4828-0698-421d-bae4-b10536c4d96c\"\ \r\n}" headers: cache-control: @@ -3673,7 +4500,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:36:28 GMT + - Tue, 30 Apr 2019 01:49:45 GMT expires: - '-1' pragma: @@ -3690,7 +4517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29747 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29984 status: code: 200 message: OK @@ -3708,14 +4535,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/88ac4828-0698-421d-bae4-b10536c4d96c?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:49:35.8870325+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"88ac4828-0698-421d-bae4-b10536c4d96c\"\ \r\n}" headers: cache-control: @@ -3725,7 +4552,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:36:59 GMT + - Tue, 30 Apr 2019 01:50:22 GMT expires: - '-1' pragma: @@ -3742,7 +4569,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29742 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29977 status: code: 200 message: OK @@ -3760,14 +4587,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/88ac4828-0698-421d-bae4-b10536c4d96c?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:49:35.8870325+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"88ac4828-0698-421d-bae4-b10536c4d96c\"\ \r\n}" headers: cache-control: @@ -3777,7 +4604,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:37:29 GMT + - Tue, 30 Apr 2019 01:50:52 GMT expires: - '-1' pragma: @@ -3794,7 +4621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29737 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29974 status: code: 200 message: OK @@ -3812,15 +4639,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/93b6754e-9fc0-4e5c-b5f2-1551f3b37714?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/88ac4828-0698-421d-bae4-b10536c4d96c?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:28:07.9896417+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:37:31.7586359+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"93b6754e-9fc0-4e5c-b5f2-1551f3b37714\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:49:35.8870325+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:51:17.1391831+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"88ac4828-0698-421d-bae4-b10536c4d96c\"\r\n}" headers: cache-control: - no-cache @@ -3829,7 +4656,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:00 GMT + - Tue, 30 Apr 2019 01:51:22 GMT expires: - '-1' pragma: @@ -3846,7 +4673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29728 + - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29972 status: code: 200 message: OK @@ -3866,8 +4693,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -3881,7 +4708,7 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2019 21:38:01 GMT + - Tue, 30 Apr 2019 01:51:22 GMT expires: - '-1' pragma: @@ -3894,9 +4721,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1174 + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -3914,27 +4741,27 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"694125a1-4b6d-4407-81c3-b86aacfc4de6\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"e6bf9efa-7380-4e3d-8a2b-8bd366fa46ca\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"microsoft-ads\",\r\n \"offer\": \"linux-data-science-vm-ubuntu\"\ ,\r\n \"sku\": \"linuxdsvmubuntu\",\r\n \"version\": \"latest\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"vm1_OsDisk_1_e732897467d948fab6ad90078e09707c\",\r\n\ + \ \"name\": \"vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9\",\r\n\ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c\"\ + ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9\"\ \r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \ - \ \"lun\": 0,\r\n \"name\": \"vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab\"\ + \ \"lun\": 0,\r\n \"name\": \"vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\":\ - \ \"None\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab\"\ + \ \"None\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e\"\ \r\n },\r\n \"toBeDetached\": false\r\n }\r\n \ \ ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\ ,\r\n \"adminUsername\": \"sdk-test-admin\",\r\n \"linuxConfiguration\"\ @@ -3956,7 +4783,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:00 GMT + - Tue, 30 Apr 2019 01:51:23 GMT expires: - '-1' pragma: @@ -3973,7 +4800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31862 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31987 status: code: 200 message: OK @@ -3991,15 +4818,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:24:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:43:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4008,7 +4835,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:01 GMT + - Tue, 30 Apr 2019 01:51:24 GMT expires: - '-1' pragma: @@ -4024,7 +4851,8 @@ interactions: message: OK - request: body: 'b''{"location": "westus", "tags": {}, "properties": {"sourceVirtualMachine": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"}}}''' + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"}, + "hyperVGeneration": "V1"}}''' headers: Accept: - application/json @@ -4035,47 +4863,48 @@ interactions: Connection: - keep-alive Content-Length: - - '276' + - '302' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\ \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c\"\ + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n\ \ \"lun\": 0,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"\ - location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1\"\ + : \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1\"\ ,\r\n \"name\": \"image1\"\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/44447cb5-3b56-4ad3-b25e-2ba1d7c69117?api-version=2018-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d8278d5d-c0d2-4799-907d-1530304bc4a7?api-version=2019-03-01 cache-control: - no-cache content-length: - - '1528' + - '1559' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:01 GMT + - Tue, 30 Apr 2019 01:51:24 GMT expires: - '-1' pragma: @@ -4088,9 +4917,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;192 + - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -4108,15 +4937,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/44447cb5-3b56-4ad3-b25e-2ba1d7c69117?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d8278d5d-c0d2-4799-907d-1530304bc4a7?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:38:02.2273964+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:38:07.3524173+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"44447cb5-3b56-4ad3-b25e-2ba1d7c69117\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:51:24.9829208+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:51:30.2173055+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"d8278d5d-c0d2-4799-907d-1530304bc4a7\"\r\n}" headers: cache-control: - no-cache @@ -4125,7 +4954,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:32 GMT + - Tue, 30 Apr 2019 01:51:55 GMT expires: - '-1' pragma: @@ -4142,7 +4971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29723 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29969 status: code: 200 message: OK @@ -4160,10 +4989,10 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ @@ -4171,25 +5000,26 @@ interactions: \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ \ \"diskSizeGB\": 50,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n\ \ \"lun\": 0,\r\n \"diskSizeGB\": 100,\r\n \"managedDisk\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1\"\ ,\r\n \"name\": \"image1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1586' + - '1617' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:32 GMT + - Tue, 30 Apr 2019 01:51:56 GMT expires: - '-1' pragma: @@ -4206,7 +5036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;353,Microsoft.Compute/GetImages30Min;1770 + - Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1797 status: code: 200 message: OK @@ -4225,15 +5055,15 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:24:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:43:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -4242,7 +5072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:33 GMT + - Tue, 30 Apr 2019 01:51:56 GMT expires: - '-1' pragma: @@ -4325,13 +5155,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:34 GMT + - Tue, 30 Apr 2019 01:51:58 GMT etag: - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' expires: - - Tue, 16 Apr 2019 21:43:34 GMT + - Tue, 30 Apr 2019 01:56:58 GMT source-age: - - '245' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -4339,23 +5169,23 @@ interactions: via: - 1.1 varnish x-cache: - - HIT + - MISS x-cache-hits: - - '1' + - '0' x-content-type-options: - nosniff x-fastly-request-id: - - 350ec10dae1e65a6e93e94990f8627653fe3faf6 + - 728636a8436d1948e6cf06cb243c9250067b8e2d x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - 10A2:3BB9:3AE496:3FC884:5CB64A63 + - 7FD4:0E13:9220D:AAE35:5CC7AA3D x-served-by: - - cache-sea1047-SEA + - cache-dfw18622-DFW x-timer: - - S1555450714.048116,VS0,VE1 + - S1556589118.041572,VS0,VE86 x-xss-protection: - 1; mode=block status: @@ -4376,12 +5206,12 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ @@ -4389,25 +5219,26 @@ interactions: \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ \ \"diskSizeGB\": 50,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n\ \ \"lun\": 0,\r\n \"diskSizeGB\": 100,\r\n \"managedDisk\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1\"\ ,\r\n \"name\": \"image1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1586' + - '1617' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:33 GMT + - Tue, 30 Apr 2019 01:51:57 GMT expires: - '-1' pragma: @@ -4424,7 +5255,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;352,Microsoft.Compute/GetImages30Min;1769 + - Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1796 status: code: 200 message: OK @@ -4443,12 +5274,12 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ @@ -4456,25 +5287,26 @@ interactions: \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ \ \"diskSizeGB\": 50,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e732897467d948fab6ad90078e09707c\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_61bfeee48699424bbcfaeaec5f39acd9\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n\ \ \"lun\": 0,\r\n \"diskSizeGB\": 100,\r\n \"managedDisk\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_lun_0_2_2a414bb4576d45b6b142c005746f0aab\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_lun_0_2_ad519faba0e94286b8e57bd8081afa0e\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1\"\ ,\r\n \"name\": \"image1\"\r\n}" headers: cache-control: - no-cache content-length: - - '1586' + - '1617' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:33 GMT + - Tue, 30 Apr 2019 01:51:58 GMT expires: - '-1' pragma: @@ -4491,7 +5323,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;351,Microsoft.Compute/GetImages30Min;1768 + - Microsoft.Compute/GetImages3Min;355,Microsoft.Compute/GetImages30Min;1795 status: code: 200 message: OK @@ -4510,8 +5342,8 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -4520,15 +5352,15 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\"\ - ,\r\n \"etag\": \"W/\\\"87f679d6-f16c-43a7-9079-fd10a7379ead\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"338f034d-215d-4936-9e45-d57dab98b6a0\\\"\",\r\ \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea145af4-6df7-4e42-8f9c-fbaf94929d25\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"99aed714-6dfe-4f8f-a13e-b02a5b52b906\"\ ,\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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\ - ,\r\n \"etag\": \"W/\\\"87f679d6-f16c-43a7-9079-fd10a7379ead\\\"\ + ,\r\n \"etag\": \"W/\\\"338f034d-215d-4936-9e45-d57dab98b6a0\\\"\ \",\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\"\ @@ -4547,7 +5379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:36 GMT + - Tue, 30 Apr 2019 01:51:58 GMT expires: - '-1' pragma: @@ -4614,26 +5446,26 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","name":"vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","properties":{"templateHash":"12610281278571600451","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:38:41.7781501Z","duration":"PT2.8674032S","correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","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/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","name":"vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","properties":{"templateHash":"12605080563092288409","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:52:04.81383Z","duration":"PT3.9110441S","correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","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/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/operationStatuses/08586461561665668774?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/operationStatuses/08586450177645748360?api-version=2018-05-01 cache-control: - no-cache content-length: - - '2403' + - '2401' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:41 GMT + - Tue, 30 Apr 2019 01:52:04 GMT expires: - '-1' pragma: @@ -4643,7 +5475,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -4664,12 +5496,12 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A38%3A46Z%20and%20correlationId%20eq%20%27d431d1ef-0fd0-41dc-996b-ca9ad2612a59%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A52%3A09Z%20and%20correlationId%20eq%20%2708a11057-4d55-4ebd-bbc1-212253a01ce2%27 response: body: string: '{"value":[]}' @@ -4681,7 +5513,263 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:47 GMT + - Tue, 30 Apr 2019 01:52:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher + --plan-name --plan-product + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A52%3A19Z%20and%20correlationId%20eq%20%2708a11057-4d55-4ebd-bbc1-212253a01ce2%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"369f091f-4c2f-45a5-aa3e-fc69630ce646","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/369f091f-4c2f-45a5-aa3e-fc69630ce646/ticks/636921859191371856","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:51:59.1371856Z","submissionTimestamp":"2019-04-30T01:52:12.288708Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '3711' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:52:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher + --plan-name --plan-product + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A52%3A30Z%20and%20correlationId%20eq%20%2708a11057-4d55-4ebd-bbc1-212253a01ce2%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a4c0d8a-215c-4919-aa4f-0d20c120afe2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/5a4c0d8a-215c-4919-aa4f-0d20c120afe2/ticks/636921859272787801","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.2787801Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c8c29451-b4a2-4107-b12c-bd0717e71a8a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c8c29451-b4a2-4107-b12c-bd0717e71a8a/ticks/636921859270837554","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.0837554Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"31edd7bc-f799-40c0-9349-bb02d04be347","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/31edd7bc-f799-40c0-9349-bb02d04be347/ticks/636921859251022044","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:05.1022044Z","submissionTimestamp":"2019-04-30T01:52:22.1086689Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"369f091f-4c2f-45a5-aa3e-fc69630ce646","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/369f091f-4c2f-45a5-aa3e-fc69630ce646/ticks/636921859191371856","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:51:59.1371856Z","submissionTimestamp":"2019-04-30T01:52:12.288708Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '15311' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:52:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher + --plan-name --plan-product + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450177645748360?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: + - Tue, 30 Apr 2019 01:52:35 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 + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher + --plan-name --plan-product + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A52%3A40Z%20and%20correlationId%20eq%20%2708a11057-4d55-4ebd-bbc1-212253a01ce2%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"48ba5cb5-de36-42f1-84ba-0e39d967f818","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/48ba5cb5-de36-42f1-84ba-0e39d967f818/ticks/636921859383403135","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:18.3403135Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"190ff315-d18c-4b4c-8124-7ee9411ca76a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/190ff315-d18c-4b4c-8124-7ee9411ca76a/ticks/636921859361981968","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f2a55d34-27b4-43bb-9676-9556d5c02886","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:16.1981968Z","submissionTimestamp":"2019-04-30T01:52:34.176594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ed449b75-784a-4d35-81eb-311902d401c9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/ed449b75-784a-4d35-81eb-311902d401c9/ticks/636921859359203486","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.9203486Z","submissionTimestamp":"2019-04-30T01:52:36.1562956Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"fc994e06-8f24-4ac4-9a62-d85d7058f9b4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/fc994e06-8f24-4ac4-9a62-d85d7058f9b4/ticks/636921859353728946","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f5bcdd13-97aa-4486-a71d-33dd9ec47607","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.3728946Z","submissionTimestamp":"2019-04-30T01:52:34.1755938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ff1df0c0-3035-4d48-afdf-1aefa82bd8ad","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/ff1df0c0-3035-4d48-afdf-1aefa82bd8ad/ticks/636921859301758154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"195c2e7f-9fbc-46c7-935a-b54a39af35bc","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39c887b5-8dee-4401-9af1-57ebbc8e20f4\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1758154Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a4c0d8a-215c-4919-aa4f-0d20c120afe2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/5a4c0d8a-215c-4919-aa4f-0d20c120afe2/ticks/636921859272787801","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.2787801Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c8c29451-b4a2-4107-b12c-bd0717e71a8a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c8c29451-b4a2-4107-b12c-bd0717e71a8a/ticks/636921859270837554","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.0837554Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"31edd7bc-f799-40c0-9349-bb02d04be347","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/31edd7bc-f799-40c0-9349-bb02d04be347/ticks/636921859251022044","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:05.1022044Z","submissionTimestamp":"2019-04-30T01:52:22.1086689Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"369f091f-4c2f-45a5-aa3e-fc69630ce646","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/369f091f-4c2f-45a5-aa3e-fc69630ce646/ticks/636921859191371856","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:51:59.1371856Z","submissionTimestamp":"2019-04-30T01:52:12.288708Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '40068' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:52:40 GMT expires: - '-1' pragma: @@ -4716,28 +5804,93 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A38%3A57Z%20and%20correlationId%20eq%20%27d431d1ef-0fd0-41dc-996b-ca9ad2612a59%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A52%3A51Z%20and%20correlationId%20eq%20%2708a11057-4d55-4ebd-bbc1-212253a01ce2%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"49032512-1c7f-4b3d-b84c-c93fdbc9916a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/49032512-1c7f-4b3d-b84c-c93fdbc9916a/ticks/636910475172831935","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:37.2831935Z","submissionTimestamp":"2019-04-16T21:38:53.1101279Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"3a593aaf-5097-4686-82cb-a41cd37d1009","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/3a593aaf-5097-4686-82cb-a41cd37d1009/ticks/636921859428162459","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f4f565d2-5525-468b-8e1e-945da813b9a2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:22.8162459Z","submissionTimestamp":"2019-04-30T01:52:46.2063018Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3/ticks/636921859425862487","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:22.5862487Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"80a8d968-baba-459e-bdcf-518622b51564","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/80a8d968-baba-459e-bdcf-518622b51564/ticks/636921859416363138","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.6363138Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5061acc6-44d1-479f-b1f1-589d23558015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/5061acc6-44d1-479f-b1f1-589d23558015/ticks/636921859414573013","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"51899d6b-3bd1-42a4-b534-9331bf439240"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.4573013Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"97ff2468-5e49-4fcb-b996-113d447e1f6f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/97ff2468-5e49-4fcb-b996-113d447e1f6f/ticks/636921859413782584","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d6d9aa02-e2c8-4f78-be30-9fe3f5fac20a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.3782584Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e4b05791-e368-498c-a00d-67079f774737","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/e4b05791-e368-498c-a00d-67079f774737/ticks/636921859412172632","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.2172632Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"71cb0d4b-2425-481c-ab92-c4a22770338c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/71cb0d4b-2425-481c-ab92-c4a22770338c/ticks/636921859411332274","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.1332274Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"a67df809-d685-4718-bea8-b89ae9d96827","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/a67df809-d685-4718-bea8-b89ae9d96827/ticks/636921859408363168","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:20.8363168Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"48ba5cb5-de36-42f1-84ba-0e39d967f818","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/48ba5cb5-de36-42f1-84ba-0e39d967f818/ticks/636921859383403135","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:18.3403135Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e6a45cc6-54ae-47ae-8753-b231807a8639","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/e6a45cc6-54ae-47ae-8753-b231807a8639/ticks/636921859374503359","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"087a9cd9-3e8b-4699-81e6-ee3f4b9e070d","responseBody":"{\"name\":\"vm2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0ec4b26-2cd8-43c1-a1e1-ae8fe7b08cf9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:17.4503359Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"190ff315-d18c-4b4c-8124-7ee9411ca76a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/190ff315-d18c-4b4c-8124-7ee9411ca76a/ticks/636921859361981968","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f2a55d34-27b4-43bb-9676-9556d5c02886","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:16.1981968Z","submissionTimestamp":"2019-04-30T01:52:34.176594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ed449b75-784a-4d35-81eb-311902d401c9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/ed449b75-784a-4d35-81eb-311902d401c9/ticks/636921859359203486","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.9203486Z","submissionTimestamp":"2019-04-30T01:52:36.1562956Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"fc994e06-8f24-4ac4-9a62-d85d7058f9b4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/fc994e06-8f24-4ac4-9a62-d85d7058f9b4/ticks/636921859353728946","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f5bcdd13-97aa-4486-a71d-33dd9ec47607","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.3728946Z","submissionTimestamp":"2019-04-30T01:52:34.1755938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ff1df0c0-3035-4d48-afdf-1aefa82bd8ad","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/ff1df0c0-3035-4d48-afdf-1aefa82bd8ad/ticks/636921859301758154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"195c2e7f-9fbc-46c7-935a-b54a39af35bc","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39c887b5-8dee-4401-9af1-57ebbc8e20f4\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1758154Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a/ticks/636921859301158205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3b577252-13c9-46f3-9cf5-c251153cdada","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"86009c64-dcaa-47f1-b517-17bedefd9577\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"eb8c92d5-a10d-4ddf-af92-0ec9fe3323ff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1158205Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5d599dc6-bf02-4e7d-a482-1f8219f67011","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/5d599dc6-bf02-4e7d-a482-1f8219f67011/ticks/636921859299058989","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:09.9058989Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a4c0d8a-215c-4919-aa4f-0d20c120afe2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/5a4c0d8a-215c-4919-aa4f-0d20c120afe2/ticks/636921859272787801","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.2787801Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c8c29451-b4a2-4107-b12c-bd0717e71a8a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c8c29451-b4a2-4107-b12c-bd0717e71a8a/ticks/636921859270837554","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.0837554Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"31edd7bc-f799-40c0-9349-bb02d04be347","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/31edd7bc-f799-40c0-9349-bb02d04be347/ticks/636921859251022044","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:05.1022044Z","submissionTimestamp":"2019-04-30T01:52:22.1086689Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"369f091f-4c2f-45a5-aa3e-fc69630ce646","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/369f091f-4c2f-45a5-aa3e-fc69630ce646/ticks/636921859191371856","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:51:59.1371856Z","submissionTimestamp":"2019-04-30T01:52:12.288708Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '3710' + - '79444' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:58 GMT + - Tue, 30 Apr 2019 01:52:51 GMT expires: - '-1' pragma: @@ -4772,55 +5925,97 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A39%3A07Z%20and%20correlationId%20eq%20%27d431d1ef-0fd0-41dc-996b-ca9ad2612a59%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A53%3A01Z%20and%20correlationId%20eq%20%2708a11057-4d55-4ebd-bbc1-212253a01ce2%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"075d3c60-c136-4ef1-9b89-2d8fd4c06002","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/075d3c60-c136-4ef1-9b89-2d8fd4c06002/ticks/636910475270379349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4f0e61aa-b7dd-4213-91fa-80de5105acb4","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"eeae8ad7-ada1-4481-825a-d282672a14b5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"71696d37-6127-4131-aff5-e377507b1a93\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:47.0379349Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"8b567419-431c-4d58-8872-60d108d53351","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/8b567419-431c-4d58-8872-60d108d53351/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"e89ae20d-c9ed-471f-a409-62ba5c91d2e1","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e52fc921-cc50-43fa-9bfc-b562a9e59608\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"d11c3ded-5c7e-47a6-8de7-3ec811caaeba","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/d11c3ded-5c7e-47a6-8de7-3ec811caaeba/ticks/636921859553797850","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3eabfab0-13cf-4633-8568-51be03072bf8","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:35.379785Z","submissionTimestamp":"2019-04-30T01:52:53.0634424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"3a593aaf-5097-4686-82cb-a41cd37d1009","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/3a593aaf-5097-4686-82cb-a41cd37d1009/ticks/636921859428162459","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f4f565d2-5525-468b-8e1e-945da813b9a2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:22.8162459Z","submissionTimestamp":"2019-04-30T01:52:46.2063018Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3/ticks/636921859425862487","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:22.5862487Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"80a8d968-baba-459e-bdcf-518622b51564","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/80a8d968-baba-459e-bdcf-518622b51564/ticks/636921859416363138","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.6363138Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5061acc6-44d1-479f-b1f1-589d23558015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/5061acc6-44d1-479f-b1f1-589d23558015/ticks/636921859414573013","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"51899d6b-3bd1-42a4-b534-9331bf439240"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.4573013Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"97ff2468-5e49-4fcb-b996-113d447e1f6f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/97ff2468-5e49-4fcb-b996-113d447e1f6f/ticks/636921859413782584","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d6d9aa02-e2c8-4f78-be30-9fe3f5fac20a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.3782584Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e4b05791-e368-498c-a00d-67079f774737","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/e4b05791-e368-498c-a00d-67079f774737/ticks/636921859412172632","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.2172632Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"71cb0d4b-2425-481c-ab92-c4a22770338c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/71cb0d4b-2425-481c-ab92-c4a22770338c/ticks/636921859411332274","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.1332274Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"a67df809-d685-4718-bea8-b89ae9d96827","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/a67df809-d685-4718-bea8-b89ae9d96827/ticks/636921859408363168","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:20.8363168Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"48ba5cb5-de36-42f1-84ba-0e39d967f818","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/48ba5cb5-de36-42f1-84ba-0e39d967f818/ticks/636921859383403135","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:18.3403135Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e6a45cc6-54ae-47ae-8753-b231807a8639","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/e6a45cc6-54ae-47ae-8753-b231807a8639/ticks/636921859374503359","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"087a9cd9-3e8b-4699-81e6-ee3f4b9e070d","responseBody":"{\"name\":\"vm2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0ec4b26-2cd8-43c1-a1e1-ae8fe7b08cf9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:17.4503359Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"190ff315-d18c-4b4c-8124-7ee9411ca76a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/190ff315-d18c-4b4c-8124-7ee9411ca76a/ticks/636921859361981968","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f2a55d34-27b4-43bb-9676-9556d5c02886","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:16.1981968Z","submissionTimestamp":"2019-04-30T01:52:34.176594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ed449b75-784a-4d35-81eb-311902d401c9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/ed449b75-784a-4d35-81eb-311902d401c9/ticks/636921859359203486","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.9203486Z","submissionTimestamp":"2019-04-30T01:52:36.1562956Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"fc994e06-8f24-4ac4-9a62-d85d7058f9b4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/fc994e06-8f24-4ac4-9a62-d85d7058f9b4/ticks/636921859353728946","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f5bcdd13-97aa-4486-a71d-33dd9ec47607","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.3728946Z","submissionTimestamp":"2019-04-30T01:52:34.1755938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ff1df0c0-3035-4d48-afdf-1aefa82bd8ad","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/ff1df0c0-3035-4d48-afdf-1aefa82bd8ad/ticks/636921859301758154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"195c2e7f-9fbc-46c7-935a-b54a39af35bc","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39c887b5-8dee-4401-9af1-57ebbc8e20f4\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"4d12385b-c20e-46bd-af73-28a542371db9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/4d12385b-c20e-46bd-af73-28a542371db9/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"c0443acb-a0fd-4f53-89b9-08238aacbf8a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c0443acb-a0fd-4f53-89b9-08238aacbf8a/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"094ae94c-caff-4c68-a198-78b0b4b0426b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/094ae94c-caff-4c68-a198-78b0b4b0426b/ticks/636910475221032374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1758154Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a/ticks/636921859301158205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3b577252-13c9-46f3-9cf5-c251153cdada","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"86009c64-dcaa-47f1-b517-17bedefd9577\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"eb8c92d5-a10d-4ddf-af92-0ec9fe3323ff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1158205Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5d599dc6-bf02-4e7d-a482-1f8219f67011","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/5d599dc6-bf02-4e7d-a482-1f8219f67011/ticks/636921859299058989","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:09.9058989Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a4c0d8a-215c-4919-aa4f-0d20c120afe2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/5a4c0d8a-215c-4919-aa4f-0d20c120afe2/ticks/636921859272787801","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.2787801Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c8c29451-b4a2-4107-b12c-bd0717e71a8a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c8c29451-b4a2-4107-b12c-bd0717e71a8a/ticks/636921859270837554","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.0837554Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"31edd7bc-f799-40c0-9349-bb02d04be347","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/31edd7bc-f799-40c0-9349-bb02d04be347/ticks/636921859251022044","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:42.1032374Z","submissionTimestamp":"2019-04-16T21:39:03.1482193Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"49032512-1c7f-4b3d-b84c-c93fdbc9916a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/49032512-1c7f-4b3d-b84c-c93fdbc9916a/ticks/636910475172831935","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:37.2831935Z","submissionTimestamp":"2019-04-16T21:38:53.1101279Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:05.1022044Z","submissionTimestamp":"2019-04-30T01:52:22.1086689Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"369f091f-4c2f-45a5-aa3e-fc69630ce646","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/369f091f-4c2f-45a5-aa3e-fc69630ce646/ticks/636921859191371856","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:51:59.1371856Z","submissionTimestamp":"2019-04-30T01:52:12.288708Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '32839' + - '83022' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:09 GMT + - Tue, 30 Apr 2019 01:53:03 GMT expires: - '-1' pragma: @@ -4853,10 +6048,10 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461561665668774?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450177645748360?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -4868,7 +6063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:11 GMT + - Tue, 30 Apr 2019 01:53:05 GMT expires: - '-1' pragma: @@ -4899,61 +6094,97 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A39%3A18Z%20and%20correlationId%20eq%20%27d431d1ef-0fd0-41dc-996b-ca9ad2612a59%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A53%3A12Z%20and%20correlationId%20eq%20%2708a11057-4d55-4ebd-bbc1-212253a01ce2%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"d887a75a-b053-41c1-b81d-dd16a78309df","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/d887a75a-b053-41c1-b81d-dd16a78309df/ticks/636910475330660763","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"65f3dcec-4cb9-41da-b08e-463a644fe62f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:53.0660763Z","submissionTimestamp":"2019-04-16T21:39:18.095913Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"ad2b9f7d-2969-4eb1-8a73-26b1b0e1936c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/ad2b9f7d-2969-4eb1-8a73-26b1b0e1936c/ticks/636910475323506048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"4bba2b6d-3b53-44a9-8252-4003f7473474","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:52.3506048Z","submissionTimestamp":"2019-04-16T21:39:15.0724071Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"075d3c60-c136-4ef1-9b89-2d8fd4c06002","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/075d3c60-c136-4ef1-9b89-2d8fd4c06002/ticks/636910475270379349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4f0e61aa-b7dd-4213-91fa-80de5105acb4","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"eeae8ad7-ada1-4481-825a-d282672a14b5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"71696d37-6127-4131-aff5-e377507b1a93\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:47.0379349Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"8b567419-431c-4d58-8872-60d108d53351","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/8b567419-431c-4d58-8872-60d108d53351/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"e89ae20d-c9ed-471f-a409-62ba5c91d2e1","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e52fc921-cc50-43fa-9bfc-b562a9e59608\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"d11c3ded-5c7e-47a6-8de7-3ec811caaeba","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/d11c3ded-5c7e-47a6-8de7-3ec811caaeba/ticks/636921859553797850","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3eabfab0-13cf-4633-8568-51be03072bf8","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:35.379785Z","submissionTimestamp":"2019-04-30T01:52:53.0634424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"3a593aaf-5097-4686-82cb-a41cd37d1009","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/3a593aaf-5097-4686-82cb-a41cd37d1009/ticks/636921859428162459","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f4f565d2-5525-468b-8e1e-945da813b9a2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:22.8162459Z","submissionTimestamp":"2019-04-30T01:52:46.2063018Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3/ticks/636921859425862487","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:22.5862487Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"80a8d968-baba-459e-bdcf-518622b51564","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/80a8d968-baba-459e-bdcf-518622b51564/ticks/636921859416363138","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.6363138Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5061acc6-44d1-479f-b1f1-589d23558015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/5061acc6-44d1-479f-b1f1-589d23558015/ticks/636921859414573013","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"51899d6b-3bd1-42a4-b534-9331bf439240"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.4573013Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"97ff2468-5e49-4fcb-b996-113d447e1f6f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/97ff2468-5e49-4fcb-b996-113d447e1f6f/ticks/636921859413782584","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d6d9aa02-e2c8-4f78-be30-9fe3f5fac20a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.3782584Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e4b05791-e368-498c-a00d-67079f774737","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/e4b05791-e368-498c-a00d-67079f774737/ticks/636921859412172632","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.2172632Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"71cb0d4b-2425-481c-ab92-c4a22770338c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/71cb0d4b-2425-481c-ab92-c4a22770338c/ticks/636921859411332274","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.1332274Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"a67df809-d685-4718-bea8-b89ae9d96827","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/a67df809-d685-4718-bea8-b89ae9d96827/ticks/636921859408363168","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:20.8363168Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"48ba5cb5-de36-42f1-84ba-0e39d967f818","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/48ba5cb5-de36-42f1-84ba-0e39d967f818/ticks/636921859383403135","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:18.3403135Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e6a45cc6-54ae-47ae-8753-b231807a8639","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/e6a45cc6-54ae-47ae-8753-b231807a8639/ticks/636921859374503359","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"087a9cd9-3e8b-4699-81e6-ee3f4b9e070d","responseBody":"{\"name\":\"vm2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0ec4b26-2cd8-43c1-a1e1-ae8fe7b08cf9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:17.4503359Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"190ff315-d18c-4b4c-8124-7ee9411ca76a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/190ff315-d18c-4b4c-8124-7ee9411ca76a/ticks/636921859361981968","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f2a55d34-27b4-43bb-9676-9556d5c02886","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:16.1981968Z","submissionTimestamp":"2019-04-30T01:52:34.176594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ed449b75-784a-4d35-81eb-311902d401c9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/ed449b75-784a-4d35-81eb-311902d401c9/ticks/636921859359203486","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.9203486Z","submissionTimestamp":"2019-04-30T01:52:36.1562956Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"fc994e06-8f24-4ac4-9a62-d85d7058f9b4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/fc994e06-8f24-4ac4-9a62-d85d7058f9b4/ticks/636921859353728946","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f5bcdd13-97aa-4486-a71d-33dd9ec47607","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.3728946Z","submissionTimestamp":"2019-04-30T01:52:34.1755938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ff1df0c0-3035-4d48-afdf-1aefa82bd8ad","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/ff1df0c0-3035-4d48-afdf-1aefa82bd8ad/ticks/636921859301758154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"195c2e7f-9fbc-46c7-935a-b54a39af35bc","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39c887b5-8dee-4401-9af1-57ebbc8e20f4\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"4d12385b-c20e-46bd-af73-28a542371db9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/4d12385b-c20e-46bd-af73-28a542371db9/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"c0443acb-a0fd-4f53-89b9-08238aacbf8a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c0443acb-a0fd-4f53-89b9-08238aacbf8a/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"094ae94c-caff-4c68-a198-78b0b4b0426b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/094ae94c-caff-4c68-a198-78b0b4b0426b/ticks/636910475221032374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1758154Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a/ticks/636921859301158205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3b577252-13c9-46f3-9cf5-c251153cdada","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"86009c64-dcaa-47f1-b517-17bedefd9577\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"eb8c92d5-a10d-4ddf-af92-0ec9fe3323ff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1158205Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5d599dc6-bf02-4e7d-a482-1f8219f67011","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/5d599dc6-bf02-4e7d-a482-1f8219f67011/ticks/636921859299058989","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:09.9058989Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a4c0d8a-215c-4919-aa4f-0d20c120afe2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/5a4c0d8a-215c-4919-aa4f-0d20c120afe2/ticks/636921859272787801","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.2787801Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c8c29451-b4a2-4107-b12c-bd0717e71a8a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c8c29451-b4a2-4107-b12c-bd0717e71a8a/ticks/636921859270837554","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.0837554Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"31edd7bc-f799-40c0-9349-bb02d04be347","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/31edd7bc-f799-40c0-9349-bb02d04be347/ticks/636921859251022044","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:42.1032374Z","submissionTimestamp":"2019-04-16T21:39:03.1482193Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"49032512-1c7f-4b3d-b84c-c93fdbc9916a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/49032512-1c7f-4b3d-b84c-c93fdbc9916a/ticks/636910475172831935","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:37.2831935Z","submissionTimestamp":"2019-04-16T21:38:53.1101279Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:05.1022044Z","submissionTimestamp":"2019-04-30T01:52:22.1086689Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"369f091f-4c2f-45a5-aa3e-fc69630ce646","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/369f091f-4c2f-45a5-aa3e-fc69630ce646/ticks/636921859191371856","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:51:59.1371856Z","submissionTimestamp":"2019-04-30T01:52:12.288708Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '39904' + - '83022' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:18 GMT + - Tue, 30 Apr 2019 01:53:11 GMT expires: - '-1' pragma: @@ -4988,77 +6219,101 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A39%3A28Z%20and%20correlationId%20eq%20%27d431d1ef-0fd0-41dc-996b-ca9ad2612a59%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A53%3A23Z%20and%20correlationId%20eq%20%2708a11057-4d55-4ebd-bbc1-212253a01ce2%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"ff371d5b-981c-42b5-b1b3-2e8453fa2541","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e7bfa602-47e9-4b17-bf36-52f19783cfec","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/ff371d5b-981c-42b5-b1b3-2e8453fa2541/ticks/636910475401589671","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"bb3564b8-350c-430a-9f4a-04125f552c96"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:00.1589671Z","submissionTimestamp":"2019-04-16T21:39:24.0707817Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"8582db92-2859-4250-9887-4abc8543b74e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/8582db92-2859-4250-9887-4abc8543b74e/ticks/636910475399439608","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:59.9439608Z","submissionTimestamp":"2019-04-16T21:39:24.0707817Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"6731ed96-0e2b-4c67-a9ba-3b37919eae6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0/events/6731ed96-0e2b-4c67-a9ba-3b37919eae6a/ticks/636910475383721682","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"15f0d216-783e-41b9-868c-aa9d0bb3d501","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"03d9e005-1483-4b05-ad16-14a9bfd9c6bc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:38:58.3721682Z","submissionTimestamp":"2019-04-16T21:39:17.1059991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"639cfb65-b747-488e-b15e-280ee4c11386","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1/events/639cfb65-b747-488e-b15e-280ee4c11386/ticks/636910475381167244","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1ce87bc4-4e06-4b44-a3de-d36408209eb4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"18e03f26-cbf5-4e01-8389-537d32b45ccd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:38:58.1167244Z","submissionTimestamp":"2019-04-16T21:39:18.1303942Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"2dcac096-7d95-40e3-b561-5cfdd5abb17d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0/events/2dcac096-7d95-40e3-b561-5cfdd5abb17d/ticks/636910475380821276","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"15f0d216-783e-41b9-868c-aa9d0bb3d501","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:58.0821276Z","submissionTimestamp":"2019-04-16T21:39:17.1059991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"29dec889-80dc-412d-a044-717e71428d30","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1/events/29dec889-80dc-412d-a044-717e71428d30/ticks/636910475379416888","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1ce87bc4-4e06-4b44-a3de-d36408209eb4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:57.9416888Z","submissionTimestamp":"2019-04-16T21:39:18.1303942Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"d887a75a-b053-41c1-b81d-dd16a78309df","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/d887a75a-b053-41c1-b81d-dd16a78309df/ticks/636910475330660763","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"65f3dcec-4cb9-41da-b08e-463a644fe62f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:53.0660763Z","submissionTimestamp":"2019-04-16T21:39:18.095913Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"ad2b9f7d-2969-4eb1-8a73-26b1b0e1936c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/ad2b9f7d-2969-4eb1-8a73-26b1b0e1936c/ticks/636910475323506048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"4bba2b6d-3b53-44a9-8252-4003f7473474","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:52.3506048Z","submissionTimestamp":"2019-04-16T21:39:15.0724071Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"075d3c60-c136-4ef1-9b89-2d8fd4c06002","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/075d3c60-c136-4ef1-9b89-2d8fd4c06002/ticks/636910475270379349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4f0e61aa-b7dd-4213-91fa-80de5105acb4","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"eeae8ad7-ada1-4481-825a-d282672a14b5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"71696d37-6127-4131-aff5-e377507b1a93\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:47.0379349Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"8b567419-431c-4d58-8872-60d108d53351","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/8b567419-431c-4d58-8872-60d108d53351/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"e89ae20d-c9ed-471f-a409-62ba5c91d2e1","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e52fc921-cc50-43fa-9bfc-b562a9e59608\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"24dae094-4014-455f-b989-5170220639b2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/24dae094-4014-455f-b989-5170220639b2/ticks/636921859868560005","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"22845a1c-a483-4675-8ff6-4efcf98d7b41","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:53:06.8560005Z","submissionTimestamp":"2019-04-30T01:53:24.0676192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"d11c3ded-5c7e-47a6-8de7-3ec811caaeba","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/d11c3ded-5c7e-47a6-8de7-3ec811caaeba/ticks/636921859553797850","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3eabfab0-13cf-4633-8568-51be03072bf8","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:35.379785Z","submissionTimestamp":"2019-04-30T01:52:53.0634424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"3a593aaf-5097-4686-82cb-a41cd37d1009","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/3a593aaf-5097-4686-82cb-a41cd37d1009/ticks/636921859428162459","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f4f565d2-5525-468b-8e1e-945da813b9a2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:22.8162459Z","submissionTimestamp":"2019-04-30T01:52:46.2063018Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3/ticks/636921859425862487","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:22.5862487Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"80a8d968-baba-459e-bdcf-518622b51564","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/80a8d968-baba-459e-bdcf-518622b51564/ticks/636921859416363138","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.6363138Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5061acc6-44d1-479f-b1f1-589d23558015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/5061acc6-44d1-479f-b1f1-589d23558015/ticks/636921859414573013","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"51899d6b-3bd1-42a4-b534-9331bf439240"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.4573013Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"97ff2468-5e49-4fcb-b996-113d447e1f6f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/97ff2468-5e49-4fcb-b996-113d447e1f6f/ticks/636921859413782584","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d6d9aa02-e2c8-4f78-be30-9fe3f5fac20a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.3782584Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e4b05791-e368-498c-a00d-67079f774737","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/e4b05791-e368-498c-a00d-67079f774737/ticks/636921859412172632","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.2172632Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"71cb0d4b-2425-481c-ab92-c4a22770338c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/71cb0d4b-2425-481c-ab92-c4a22770338c/ticks/636921859411332274","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.1332274Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"a67df809-d685-4718-bea8-b89ae9d96827","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/a67df809-d685-4718-bea8-b89ae9d96827/ticks/636921859408363168","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:20.8363168Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"48ba5cb5-de36-42f1-84ba-0e39d967f818","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/48ba5cb5-de36-42f1-84ba-0e39d967f818/ticks/636921859383403135","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:18.3403135Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e6a45cc6-54ae-47ae-8753-b231807a8639","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/e6a45cc6-54ae-47ae-8753-b231807a8639/ticks/636921859374503359","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"087a9cd9-3e8b-4699-81e6-ee3f4b9e070d","responseBody":"{\"name\":\"vm2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0ec4b26-2cd8-43c1-a1e1-ae8fe7b08cf9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:17.4503359Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"190ff315-d18c-4b4c-8124-7ee9411ca76a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/190ff315-d18c-4b4c-8124-7ee9411ca76a/ticks/636921859361981968","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f2a55d34-27b4-43bb-9676-9556d5c02886","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:16.1981968Z","submissionTimestamp":"2019-04-30T01:52:34.176594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ed449b75-784a-4d35-81eb-311902d401c9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/ed449b75-784a-4d35-81eb-311902d401c9/ticks/636921859359203486","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.9203486Z","submissionTimestamp":"2019-04-30T01:52:36.1562956Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"fc994e06-8f24-4ac4-9a62-d85d7058f9b4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/fc994e06-8f24-4ac4-9a62-d85d7058f9b4/ticks/636921859353728946","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f5bcdd13-97aa-4486-a71d-33dd9ec47607","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.3728946Z","submissionTimestamp":"2019-04-30T01:52:34.1755938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ff1df0c0-3035-4d48-afdf-1aefa82bd8ad","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/ff1df0c0-3035-4d48-afdf-1aefa82bd8ad/ticks/636921859301758154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"195c2e7f-9fbc-46c7-935a-b54a39af35bc","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39c887b5-8dee-4401-9af1-57ebbc8e20f4\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"4d12385b-c20e-46bd-af73-28a542371db9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/4d12385b-c20e-46bd-af73-28a542371db9/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"c0443acb-a0fd-4f53-89b9-08238aacbf8a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c0443acb-a0fd-4f53-89b9-08238aacbf8a/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"094ae94c-caff-4c68-a198-78b0b4b0426b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/094ae94c-caff-4c68-a198-78b0b4b0426b/ticks/636910475221032374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1758154Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a/ticks/636921859301158205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3b577252-13c9-46f3-9cf5-c251153cdada","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"86009c64-dcaa-47f1-b517-17bedefd9577\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"eb8c92d5-a10d-4ddf-af92-0ec9fe3323ff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1158205Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5d599dc6-bf02-4e7d-a482-1f8219f67011","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/5d599dc6-bf02-4e7d-a482-1f8219f67011/ticks/636921859299058989","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:09.9058989Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a4c0d8a-215c-4919-aa4f-0d20c120afe2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/5a4c0d8a-215c-4919-aa4f-0d20c120afe2/ticks/636921859272787801","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.2787801Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c8c29451-b4a2-4107-b12c-bd0717e71a8a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c8c29451-b4a2-4107-b12c-bd0717e71a8a/ticks/636921859270837554","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.0837554Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"31edd7bc-f799-40c0-9349-bb02d04be347","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/31edd7bc-f799-40c0-9349-bb02d04be347/ticks/636921859251022044","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:42.1032374Z","submissionTimestamp":"2019-04-16T21:39:03.1482193Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"49032512-1c7f-4b3d-b84c-c93fdbc9916a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/49032512-1c7f-4b3d-b84c-c93fdbc9916a/ticks/636910475172831935","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:37.2831935Z","submissionTimestamp":"2019-04-16T21:38:53.1101279Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:05.1022044Z","submissionTimestamp":"2019-04-30T01:52:22.1086689Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"369f091f-4c2f-45a5-aa3e-fc69630ce646","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/369f091f-4c2f-45a5-aa3e-fc69630ce646/ticks/636921859191371856","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:51:59.1371856Z","submissionTimestamp":"2019-04-30T01:52:12.288708Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '58638' + - '86601' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:29 GMT + - Tue, 30 Apr 2019 01:53:24 GMT expires: - '-1' pragma: @@ -5093,97 +6348,101 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A39%3A38Z%20and%20correlationId%20eq%20%27d431d1ef-0fd0-41dc-996b-ca9ad2612a59%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A53%3A33Z%20and%20correlationId%20eq%20%2708a11057-4d55-4ebd-bbc1-212253a01ce2%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"45e0969f-e50d-405a-a9e1-b4898ac10c30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/45e0969f-e50d-405a-a9e1-b4898ac10c30/ticks/636910475519058365","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9606c761-7a0c-4d95-b8c2-71a9b9722ba8","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"24dae094-4014-455f-b989-5170220639b2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/24dae094-4014-455f-b989-5170220639b2/ticks/636921859868560005","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"22845a1c-a483-4675-8ff6-4efcf98d7b41","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:11.9058365Z","submissionTimestamp":"2019-04-16T21:39:34.1036039Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"ff371d5b-981c-42b5-b1b3-2e8453fa2541","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e7bfa602-47e9-4b17-bf36-52f19783cfec","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/ff371d5b-981c-42b5-b1b3-2e8453fa2541/ticks/636910475401589671","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"bb3564b8-350c-430a-9f4a-04125f552c96"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:00.1589671Z","submissionTimestamp":"2019-04-16T21:39:24.0707817Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"8582db92-2859-4250-9887-4abc8543b74e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/8582db92-2859-4250-9887-4abc8543b74e/ticks/636910475399439608","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:59.9439608Z","submissionTimestamp":"2019-04-16T21:39:24.0707817Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"30cf646c-994a-4b5b-b582-9b64e48f97fa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/30cf646c-994a-4b5b-b582-9b64e48f97fa/ticks/636910475390057045","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:59.0057045Z","submissionTimestamp":"2019-04-16T21:39:14.1136973Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"6731ed96-0e2b-4c67-a9ba-3b37919eae6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0/events/6731ed96-0e2b-4c67-a9ba-3b37919eae6a/ticks/636910475383721682","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"15f0d216-783e-41b9-868c-aa9d0bb3d501","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"03d9e005-1483-4b05-ad16-14a9bfd9c6bc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:38:58.3721682Z","submissionTimestamp":"2019-04-16T21:39:17.1059991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"639cfb65-b747-488e-b15e-280ee4c11386","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1/events/639cfb65-b747-488e-b15e-280ee4c11386/ticks/636910475381167244","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1ce87bc4-4e06-4b44-a3de-d36408209eb4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"18e03f26-cbf5-4e01-8389-537d32b45ccd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:38:58.1167244Z","submissionTimestamp":"2019-04-16T21:39:18.1303942Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"2dcac096-7d95-40e3-b561-5cfdd5abb17d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0/events/2dcac096-7d95-40e3-b561-5cfdd5abb17d/ticks/636910475380821276","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"15f0d216-783e-41b9-868c-aa9d0bb3d501","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:58.0821276Z","submissionTimestamp":"2019-04-16T21:39:17.1059991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"29dec889-80dc-412d-a044-717e71428d30","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1/events/29dec889-80dc-412d-a044-717e71428d30/ticks/636910475379416888","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1ce87bc4-4e06-4b44-a3de-d36408209eb4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:57.9416888Z","submissionTimestamp":"2019-04-16T21:39:18.1303942Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"b2a16dde-f7fb-427d-b94f-0e3a1f4cb375","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/b2a16dde-f7fb-427d-b94f-0e3a1f4cb375/ticks/636910475377520916","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:57.7520916Z","submissionTimestamp":"2019-04-16T21:39:14.1136973Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"25b36d15-1b6b-4fc7-a18f-e673ede770b0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e7bfa602-47e9-4b17-bf36-52f19783cfec","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/25b36d15-1b6b-4fc7-a18f-e673ede770b0/ticks/636910475350371426","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:55.0371426Z","submissionTimestamp":"2019-04-16T21:39:14.1126947Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"7021f6a5-e0e5-4a99-831d-8bd7cab20106","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1c3921f-bc09-484b-9e3f-18ec22ebea5d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/7021f6a5-e0e5-4a99-831d-8bd7cab20106/ticks/636910475340471678","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"34044e39-98e8-4a4f-bf47-b7c596306cf8","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"5ae5a42e-6043-4445-b990-d6c4b50c515c","responseBody":"{\"name\":\"vm2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\"etag\":\"W/\\\"d1bfec5e-6789-4732-94da-566e5072c6bf\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"84f77924-f631-4ea6-bb00-61fa76a6d6ce\",\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\"etag\":\"W/\\\"d1bfec5e-6789-4732-94da-566e5072c6bf\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:54.0471678Z","submissionTimestamp":"2019-04-16T21:39:14.1126947Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"d887a75a-b053-41c1-b81d-dd16a78309df","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/d887a75a-b053-41c1-b81d-dd16a78309df/ticks/636910475330660763","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"65f3dcec-4cb9-41da-b08e-463a644fe62f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:53.0660763Z","submissionTimestamp":"2019-04-16T21:39:18.095913Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"ad2b9f7d-2969-4eb1-8a73-26b1b0e1936c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/ad2b9f7d-2969-4eb1-8a73-26b1b0e1936c/ticks/636910475323506048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"4bba2b6d-3b53-44a9-8252-4003f7473474","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:52.3506048Z","submissionTimestamp":"2019-04-16T21:39:15.0724071Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"243dad68-19ad-4271-8b91-3b59c20d9744","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1c3921f-bc09-484b-9e3f-18ec22ebea5d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/243dad68-19ad-4271-8b91-3b59c20d9744/ticks/636910475320792762","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"34044e39-98e8-4a4f-bf47-b7c596306cf8","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:52.0792762Z","submissionTimestamp":"2019-04-16T21:39:14.111694Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"075d3c60-c136-4ef1-9b89-2d8fd4c06002","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/075d3c60-c136-4ef1-9b89-2d8fd4c06002/ticks/636910475270379349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4f0e61aa-b7dd-4213-91fa-80de5105acb4","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"eeae8ad7-ada1-4481-825a-d282672a14b5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"71696d37-6127-4131-aff5-e377507b1a93\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:47.0379349Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"8b567419-431c-4d58-8872-60d108d53351","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/8b567419-431c-4d58-8872-60d108d53351/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"e89ae20d-c9ed-471f-a409-62ba5c91d2e1","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e52fc921-cc50-43fa-9bfc-b562a9e59608\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:53:06.8560005Z","submissionTimestamp":"2019-04-30T01:53:24.0676192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"d11c3ded-5c7e-47a6-8de7-3ec811caaeba","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/d11c3ded-5c7e-47a6-8de7-3ec811caaeba/ticks/636921859553797850","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3eabfab0-13cf-4633-8568-51be03072bf8","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:35.379785Z","submissionTimestamp":"2019-04-30T01:52:53.0634424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"3a593aaf-5097-4686-82cb-a41cd37d1009","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/3a593aaf-5097-4686-82cb-a41cd37d1009/ticks/636921859428162459","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f4f565d2-5525-468b-8e1e-945da813b9a2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:22.8162459Z","submissionTimestamp":"2019-04-30T01:52:46.2063018Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3/ticks/636921859425862487","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:22.5862487Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"80a8d968-baba-459e-bdcf-518622b51564","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/80a8d968-baba-459e-bdcf-518622b51564/ticks/636921859416363138","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.6363138Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5061acc6-44d1-479f-b1f1-589d23558015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/5061acc6-44d1-479f-b1f1-589d23558015/ticks/636921859414573013","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"51899d6b-3bd1-42a4-b534-9331bf439240"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.4573013Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"97ff2468-5e49-4fcb-b996-113d447e1f6f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/97ff2468-5e49-4fcb-b996-113d447e1f6f/ticks/636921859413782584","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d6d9aa02-e2c8-4f78-be30-9fe3f5fac20a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.3782584Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e4b05791-e368-498c-a00d-67079f774737","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/e4b05791-e368-498c-a00d-67079f774737/ticks/636921859412172632","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.2172632Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"71cb0d4b-2425-481c-ab92-c4a22770338c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/71cb0d4b-2425-481c-ab92-c4a22770338c/ticks/636921859411332274","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.1332274Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"a67df809-d685-4718-bea8-b89ae9d96827","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/a67df809-d685-4718-bea8-b89ae9d96827/ticks/636921859408363168","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:20.8363168Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"48ba5cb5-de36-42f1-84ba-0e39d967f818","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/48ba5cb5-de36-42f1-84ba-0e39d967f818/ticks/636921859383403135","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:18.3403135Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e6a45cc6-54ae-47ae-8753-b231807a8639","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/e6a45cc6-54ae-47ae-8753-b231807a8639/ticks/636921859374503359","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"087a9cd9-3e8b-4699-81e6-ee3f4b9e070d","responseBody":"{\"name\":\"vm2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0ec4b26-2cd8-43c1-a1e1-ae8fe7b08cf9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:17.4503359Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"190ff315-d18c-4b4c-8124-7ee9411ca76a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/190ff315-d18c-4b4c-8124-7ee9411ca76a/ticks/636921859361981968","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f2a55d34-27b4-43bb-9676-9556d5c02886","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:16.1981968Z","submissionTimestamp":"2019-04-30T01:52:34.176594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ed449b75-784a-4d35-81eb-311902d401c9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/ed449b75-784a-4d35-81eb-311902d401c9/ticks/636921859359203486","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.9203486Z","submissionTimestamp":"2019-04-30T01:52:36.1562956Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"fc994e06-8f24-4ac4-9a62-d85d7058f9b4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/fc994e06-8f24-4ac4-9a62-d85d7058f9b4/ticks/636921859353728946","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f5bcdd13-97aa-4486-a71d-33dd9ec47607","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.3728946Z","submissionTimestamp":"2019-04-30T01:52:34.1755938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ff1df0c0-3035-4d48-afdf-1aefa82bd8ad","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/ff1df0c0-3035-4d48-afdf-1aefa82bd8ad/ticks/636921859301758154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"195c2e7f-9fbc-46c7-935a-b54a39af35bc","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39c887b5-8dee-4401-9af1-57ebbc8e20f4\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"4d12385b-c20e-46bd-af73-28a542371db9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/4d12385b-c20e-46bd-af73-28a542371db9/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"c0443acb-a0fd-4f53-89b9-08238aacbf8a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c0443acb-a0fd-4f53-89b9-08238aacbf8a/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"094ae94c-caff-4c68-a198-78b0b4b0426b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/094ae94c-caff-4c68-a198-78b0b4b0426b/ticks/636910475221032374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1758154Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a/ticks/636921859301158205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3b577252-13c9-46f3-9cf5-c251153cdada","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"86009c64-dcaa-47f1-b517-17bedefd9577\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"eb8c92d5-a10d-4ddf-af92-0ec9fe3323ff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1158205Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5d599dc6-bf02-4e7d-a482-1f8219f67011","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/5d599dc6-bf02-4e7d-a482-1f8219f67011/ticks/636921859299058989","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:09.9058989Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a4c0d8a-215c-4919-aa4f-0d20c120afe2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/5a4c0d8a-215c-4919-aa4f-0d20c120afe2/ticks/636921859272787801","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.2787801Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c8c29451-b4a2-4107-b12c-bd0717e71a8a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c8c29451-b4a2-4107-b12c-bd0717e71a8a/ticks/636921859270837554","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.0837554Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"31edd7bc-f799-40c0-9349-bb02d04be347","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/31edd7bc-f799-40c0-9349-bb02d04be347/ticks/636921859251022044","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:42.1032374Z","submissionTimestamp":"2019-04-16T21:39:03.1482193Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"49032512-1c7f-4b3d-b84c-c93fdbc9916a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/49032512-1c7f-4b3d-b84c-c93fdbc9916a/ticks/636910475172831935","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:37.2831935Z","submissionTimestamp":"2019-04-16T21:38:53.1101279Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:05.1022044Z","submissionTimestamp":"2019-04-30T01:52:22.1086689Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"369f091f-4c2f-45a5-aa3e-fc69630ce646","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/369f091f-4c2f-45a5-aa3e-fc69630ce646/ticks/636921859191371856","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:51:59.1371856Z","submissionTimestamp":"2019-04-30T01:52:12.288708Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '82987' + - '86601' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:39 GMT + - Tue, 30 Apr 2019 01:53:33 GMT expires: - '-1' pragma: @@ -5216,10 +6475,10 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461561665668774?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450177645748360?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -5231,7 +6490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:42 GMT + - Tue, 30 Apr 2019 01:53:35 GMT expires: - '-1' pragma: @@ -5262,97 +6521,105 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A39%3A49Z%20and%20correlationId%20eq%20%27d431d1ef-0fd0-41dc-996b-ca9ad2612a59%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A53%3A44Z%20and%20correlationId%20eq%20%2708a11057-4d55-4ebd-bbc1-212253a01ce2%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"45e0969f-e50d-405a-a9e1-b4898ac10c30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/45e0969f-e50d-405a-a9e1-b4898ac10c30/ticks/636910475519058365","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9606c761-7a0c-4d95-b8c2-71a9b9722ba8","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c1b8af16-ebcb-44f9-9495-e306eeed782e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/c1b8af16-ebcb-44f9-9495-e306eeed782e/ticks/636921860024083739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"4c0eb529-73b5-40c8-8d7d-e4be5c5e6b95","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:53:22.4083739Z","submissionTimestamp":"2019-04-30T01:53:40.0641516Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"24dae094-4014-455f-b989-5170220639b2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/24dae094-4014-455f-b989-5170220639b2/ticks/636921859868560005","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"22845a1c-a483-4675-8ff6-4efcf98d7b41","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:11.9058365Z","submissionTimestamp":"2019-04-16T21:39:34.1036039Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"ff371d5b-981c-42b5-b1b3-2e8453fa2541","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e7bfa602-47e9-4b17-bf36-52f19783cfec","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/ff371d5b-981c-42b5-b1b3-2e8453fa2541/ticks/636910475401589671","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"bb3564b8-350c-430a-9f4a-04125f552c96"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:00.1589671Z","submissionTimestamp":"2019-04-16T21:39:24.0707817Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"8582db92-2859-4250-9887-4abc8543b74e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/8582db92-2859-4250-9887-4abc8543b74e/ticks/636910475399439608","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:59.9439608Z","submissionTimestamp":"2019-04-16T21:39:24.0707817Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"30cf646c-994a-4b5b-b582-9b64e48f97fa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/30cf646c-994a-4b5b-b582-9b64e48f97fa/ticks/636910475390057045","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:59.0057045Z","submissionTimestamp":"2019-04-16T21:39:14.1136973Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"6731ed96-0e2b-4c67-a9ba-3b37919eae6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0/events/6731ed96-0e2b-4c67-a9ba-3b37919eae6a/ticks/636910475383721682","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"15f0d216-783e-41b9-868c-aa9d0bb3d501","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"03d9e005-1483-4b05-ad16-14a9bfd9c6bc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:38:58.3721682Z","submissionTimestamp":"2019-04-16T21:39:17.1059991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"639cfb65-b747-488e-b15e-280ee4c11386","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1/events/639cfb65-b747-488e-b15e-280ee4c11386/ticks/636910475381167244","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1ce87bc4-4e06-4b44-a3de-d36408209eb4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"18e03f26-cbf5-4e01-8389-537d32b45ccd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:38:58.1167244Z","submissionTimestamp":"2019-04-16T21:39:18.1303942Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"2dcac096-7d95-40e3-b561-5cfdd5abb17d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0/events/2dcac096-7d95-40e3-b561-5cfdd5abb17d/ticks/636910475380821276","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"15f0d216-783e-41b9-868c-aa9d0bb3d501","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:58.0821276Z","submissionTimestamp":"2019-04-16T21:39:17.1059991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"29dec889-80dc-412d-a044-717e71428d30","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1/events/29dec889-80dc-412d-a044-717e71428d30/ticks/636910475379416888","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1ce87bc4-4e06-4b44-a3de-d36408209eb4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:57.9416888Z","submissionTimestamp":"2019-04-16T21:39:18.1303942Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"b2a16dde-f7fb-427d-b94f-0e3a1f4cb375","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/b2a16dde-f7fb-427d-b94f-0e3a1f4cb375/ticks/636910475377520916","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:57.7520916Z","submissionTimestamp":"2019-04-16T21:39:14.1136973Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"25b36d15-1b6b-4fc7-a18f-e673ede770b0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e7bfa602-47e9-4b17-bf36-52f19783cfec","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/25b36d15-1b6b-4fc7-a18f-e673ede770b0/ticks/636910475350371426","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:55.0371426Z","submissionTimestamp":"2019-04-16T21:39:14.1126947Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"7021f6a5-e0e5-4a99-831d-8bd7cab20106","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1c3921f-bc09-484b-9e3f-18ec22ebea5d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/7021f6a5-e0e5-4a99-831d-8bd7cab20106/ticks/636910475340471678","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"34044e39-98e8-4a4f-bf47-b7c596306cf8","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"5ae5a42e-6043-4445-b990-d6c4b50c515c","responseBody":"{\"name\":\"vm2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\"etag\":\"W/\\\"d1bfec5e-6789-4732-94da-566e5072c6bf\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"84f77924-f631-4ea6-bb00-61fa76a6d6ce\",\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\"etag\":\"W/\\\"d1bfec5e-6789-4732-94da-566e5072c6bf\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:54.0471678Z","submissionTimestamp":"2019-04-16T21:39:14.1126947Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"d887a75a-b053-41c1-b81d-dd16a78309df","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/d887a75a-b053-41c1-b81d-dd16a78309df/ticks/636910475330660763","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"65f3dcec-4cb9-41da-b08e-463a644fe62f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:53.0660763Z","submissionTimestamp":"2019-04-16T21:39:18.095913Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"ad2b9f7d-2969-4eb1-8a73-26b1b0e1936c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/ad2b9f7d-2969-4eb1-8a73-26b1b0e1936c/ticks/636910475323506048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"4bba2b6d-3b53-44a9-8252-4003f7473474","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:52.3506048Z","submissionTimestamp":"2019-04-16T21:39:15.0724071Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"243dad68-19ad-4271-8b91-3b59c20d9744","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1c3921f-bc09-484b-9e3f-18ec22ebea5d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/243dad68-19ad-4271-8b91-3b59c20d9744/ticks/636910475320792762","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"34044e39-98e8-4a4f-bf47-b7c596306cf8","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:52.0792762Z","submissionTimestamp":"2019-04-16T21:39:14.111694Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"075d3c60-c136-4ef1-9b89-2d8fd4c06002","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/075d3c60-c136-4ef1-9b89-2d8fd4c06002/ticks/636910475270379349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4f0e61aa-b7dd-4213-91fa-80de5105acb4","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"eeae8ad7-ada1-4481-825a-d282672a14b5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"71696d37-6127-4131-aff5-e377507b1a93\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:47.0379349Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"8b567419-431c-4d58-8872-60d108d53351","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/8b567419-431c-4d58-8872-60d108d53351/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"e89ae20d-c9ed-471f-a409-62ba5c91d2e1","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e52fc921-cc50-43fa-9bfc-b562a9e59608\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:53:06.8560005Z","submissionTimestamp":"2019-04-30T01:53:24.0676192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"d11c3ded-5c7e-47a6-8de7-3ec811caaeba","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/d11c3ded-5c7e-47a6-8de7-3ec811caaeba/ticks/636921859553797850","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3eabfab0-13cf-4633-8568-51be03072bf8","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:35.379785Z","submissionTimestamp":"2019-04-30T01:52:53.0634424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"3a593aaf-5097-4686-82cb-a41cd37d1009","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/3a593aaf-5097-4686-82cb-a41cd37d1009/ticks/636921859428162459","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f4f565d2-5525-468b-8e1e-945da813b9a2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:22.8162459Z","submissionTimestamp":"2019-04-30T01:52:46.2063018Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3/ticks/636921859425862487","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:22.5862487Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"80a8d968-baba-459e-bdcf-518622b51564","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/80a8d968-baba-459e-bdcf-518622b51564/ticks/636921859416363138","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.6363138Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5061acc6-44d1-479f-b1f1-589d23558015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/5061acc6-44d1-479f-b1f1-589d23558015/ticks/636921859414573013","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"51899d6b-3bd1-42a4-b534-9331bf439240"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.4573013Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"97ff2468-5e49-4fcb-b996-113d447e1f6f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/97ff2468-5e49-4fcb-b996-113d447e1f6f/ticks/636921859413782584","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d6d9aa02-e2c8-4f78-be30-9fe3f5fac20a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.3782584Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e4b05791-e368-498c-a00d-67079f774737","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/e4b05791-e368-498c-a00d-67079f774737/ticks/636921859412172632","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.2172632Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"71cb0d4b-2425-481c-ab92-c4a22770338c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/71cb0d4b-2425-481c-ab92-c4a22770338c/ticks/636921859411332274","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.1332274Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"a67df809-d685-4718-bea8-b89ae9d96827","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/a67df809-d685-4718-bea8-b89ae9d96827/ticks/636921859408363168","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:20.8363168Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"48ba5cb5-de36-42f1-84ba-0e39d967f818","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/48ba5cb5-de36-42f1-84ba-0e39d967f818/ticks/636921859383403135","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:18.3403135Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e6a45cc6-54ae-47ae-8753-b231807a8639","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/e6a45cc6-54ae-47ae-8753-b231807a8639/ticks/636921859374503359","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"087a9cd9-3e8b-4699-81e6-ee3f4b9e070d","responseBody":"{\"name\":\"vm2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0ec4b26-2cd8-43c1-a1e1-ae8fe7b08cf9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:17.4503359Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"190ff315-d18c-4b4c-8124-7ee9411ca76a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/190ff315-d18c-4b4c-8124-7ee9411ca76a/ticks/636921859361981968","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f2a55d34-27b4-43bb-9676-9556d5c02886","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:16.1981968Z","submissionTimestamp":"2019-04-30T01:52:34.176594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ed449b75-784a-4d35-81eb-311902d401c9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/ed449b75-784a-4d35-81eb-311902d401c9/ticks/636921859359203486","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.9203486Z","submissionTimestamp":"2019-04-30T01:52:36.1562956Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"fc994e06-8f24-4ac4-9a62-d85d7058f9b4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/fc994e06-8f24-4ac4-9a62-d85d7058f9b4/ticks/636921859353728946","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f5bcdd13-97aa-4486-a71d-33dd9ec47607","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.3728946Z","submissionTimestamp":"2019-04-30T01:52:34.1755938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ff1df0c0-3035-4d48-afdf-1aefa82bd8ad","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/ff1df0c0-3035-4d48-afdf-1aefa82bd8ad/ticks/636921859301758154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"195c2e7f-9fbc-46c7-935a-b54a39af35bc","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39c887b5-8dee-4401-9af1-57ebbc8e20f4\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"4d12385b-c20e-46bd-af73-28a542371db9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/4d12385b-c20e-46bd-af73-28a542371db9/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"c0443acb-a0fd-4f53-89b9-08238aacbf8a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c0443acb-a0fd-4f53-89b9-08238aacbf8a/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"094ae94c-caff-4c68-a198-78b0b4b0426b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/094ae94c-caff-4c68-a198-78b0b4b0426b/ticks/636910475221032374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1758154Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a/ticks/636921859301158205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3b577252-13c9-46f3-9cf5-c251153cdada","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"86009c64-dcaa-47f1-b517-17bedefd9577\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"eb8c92d5-a10d-4ddf-af92-0ec9fe3323ff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1158205Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5d599dc6-bf02-4e7d-a482-1f8219f67011","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/5d599dc6-bf02-4e7d-a482-1f8219f67011/ticks/636921859299058989","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:09.9058989Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a4c0d8a-215c-4919-aa4f-0d20c120afe2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/5a4c0d8a-215c-4919-aa4f-0d20c120afe2/ticks/636921859272787801","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.2787801Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c8c29451-b4a2-4107-b12c-bd0717e71a8a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c8c29451-b4a2-4107-b12c-bd0717e71a8a/ticks/636921859270837554","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.0837554Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"31edd7bc-f799-40c0-9349-bb02d04be347","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/31edd7bc-f799-40c0-9349-bb02d04be347/ticks/636921859251022044","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:42.1032374Z","submissionTimestamp":"2019-04-16T21:39:03.1482193Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"49032512-1c7f-4b3d-b84c-c93fdbc9916a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/49032512-1c7f-4b3d-b84c-c93fdbc9916a/ticks/636910475172831935","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:37.2831935Z","submissionTimestamp":"2019-04-16T21:38:53.1101279Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:05.1022044Z","submissionTimestamp":"2019-04-30T01:52:22.1086689Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"369f091f-4c2f-45a5-aa3e-fc69630ce646","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/369f091f-4c2f-45a5-aa3e-fc69630ce646/ticks/636921859191371856","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:51:59.1371856Z","submissionTimestamp":"2019-04-30T01:52:12.288708Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '82987' + - '90180' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:49 GMT + - Tue, 30 Apr 2019 01:53:44 GMT expires: - '-1' pragma: @@ -5387,97 +6654,105 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A39%3A59Z%20and%20correlationId%20eq%20%27d431d1ef-0fd0-41dc-996b-ca9ad2612a59%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A53%3A55Z%20and%20correlationId%20eq%20%2708a11057-4d55-4ebd-bbc1-212253a01ce2%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"45e0969f-e50d-405a-a9e1-b4898ac10c30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/45e0969f-e50d-405a-a9e1-b4898ac10c30/ticks/636910475519058365","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9606c761-7a0c-4d95-b8c2-71a9b9722ba8","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c1b8af16-ebcb-44f9-9495-e306eeed782e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/c1b8af16-ebcb-44f9-9495-e306eeed782e/ticks/636921860024083739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"4c0eb529-73b5-40c8-8d7d-e4be5c5e6b95","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:53:22.4083739Z","submissionTimestamp":"2019-04-30T01:53:40.0641516Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"24dae094-4014-455f-b989-5170220639b2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/24dae094-4014-455f-b989-5170220639b2/ticks/636921859868560005","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"22845a1c-a483-4675-8ff6-4efcf98d7b41","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:11.9058365Z","submissionTimestamp":"2019-04-16T21:39:34.1036039Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"ff371d5b-981c-42b5-b1b3-2e8453fa2541","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e7bfa602-47e9-4b17-bf36-52f19783cfec","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/ff371d5b-981c-42b5-b1b3-2e8453fa2541/ticks/636910475401589671","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"bb3564b8-350c-430a-9f4a-04125f552c96"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:00.1589671Z","submissionTimestamp":"2019-04-16T21:39:24.0707817Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"8582db92-2859-4250-9887-4abc8543b74e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/8582db92-2859-4250-9887-4abc8543b74e/ticks/636910475399439608","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:59.9439608Z","submissionTimestamp":"2019-04-16T21:39:24.0707817Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"30cf646c-994a-4b5b-b582-9b64e48f97fa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/30cf646c-994a-4b5b-b582-9b64e48f97fa/ticks/636910475390057045","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:59.0057045Z","submissionTimestamp":"2019-04-16T21:39:14.1136973Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"6731ed96-0e2b-4c67-a9ba-3b37919eae6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0/events/6731ed96-0e2b-4c67-a9ba-3b37919eae6a/ticks/636910475383721682","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"15f0d216-783e-41b9-868c-aa9d0bb3d501","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"03d9e005-1483-4b05-ad16-14a9bfd9c6bc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:38:58.3721682Z","submissionTimestamp":"2019-04-16T21:39:17.1059991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"639cfb65-b747-488e-b15e-280ee4c11386","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1/events/639cfb65-b747-488e-b15e-280ee4c11386/ticks/636910475381167244","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1ce87bc4-4e06-4b44-a3de-d36408209eb4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"18e03f26-cbf5-4e01-8389-537d32b45ccd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:38:58.1167244Z","submissionTimestamp":"2019-04-16T21:39:18.1303942Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"2dcac096-7d95-40e3-b561-5cfdd5abb17d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0/events/2dcac096-7d95-40e3-b561-5cfdd5abb17d/ticks/636910475380821276","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"15f0d216-783e-41b9-868c-aa9d0bb3d501","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:58.0821276Z","submissionTimestamp":"2019-04-16T21:39:17.1059991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"29dec889-80dc-412d-a044-717e71428d30","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1/events/29dec889-80dc-412d-a044-717e71428d30/ticks/636910475379416888","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1ce87bc4-4e06-4b44-a3de-d36408209eb4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:57.9416888Z","submissionTimestamp":"2019-04-16T21:39:18.1303942Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"b2a16dde-f7fb-427d-b94f-0e3a1f4cb375","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/b2a16dde-f7fb-427d-b94f-0e3a1f4cb375/ticks/636910475377520916","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:57.7520916Z","submissionTimestamp":"2019-04-16T21:39:14.1136973Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"25b36d15-1b6b-4fc7-a18f-e673ede770b0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e7bfa602-47e9-4b17-bf36-52f19783cfec","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/25b36d15-1b6b-4fc7-a18f-e673ede770b0/ticks/636910475350371426","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:55.0371426Z","submissionTimestamp":"2019-04-16T21:39:14.1126947Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"7021f6a5-e0e5-4a99-831d-8bd7cab20106","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1c3921f-bc09-484b-9e3f-18ec22ebea5d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/7021f6a5-e0e5-4a99-831d-8bd7cab20106/ticks/636910475340471678","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"34044e39-98e8-4a4f-bf47-b7c596306cf8","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"5ae5a42e-6043-4445-b990-d6c4b50c515c","responseBody":"{\"name\":\"vm2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\"etag\":\"W/\\\"d1bfec5e-6789-4732-94da-566e5072c6bf\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"84f77924-f631-4ea6-bb00-61fa76a6d6ce\",\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\"etag\":\"W/\\\"d1bfec5e-6789-4732-94da-566e5072c6bf\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:54.0471678Z","submissionTimestamp":"2019-04-16T21:39:14.1126947Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"d887a75a-b053-41c1-b81d-dd16a78309df","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/d887a75a-b053-41c1-b81d-dd16a78309df/ticks/636910475330660763","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"65f3dcec-4cb9-41da-b08e-463a644fe62f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:53.0660763Z","submissionTimestamp":"2019-04-16T21:39:18.095913Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"ad2b9f7d-2969-4eb1-8a73-26b1b0e1936c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/ad2b9f7d-2969-4eb1-8a73-26b1b0e1936c/ticks/636910475323506048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"4bba2b6d-3b53-44a9-8252-4003f7473474","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:52.3506048Z","submissionTimestamp":"2019-04-16T21:39:15.0724071Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"243dad68-19ad-4271-8b91-3b59c20d9744","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1c3921f-bc09-484b-9e3f-18ec22ebea5d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/243dad68-19ad-4271-8b91-3b59c20d9744/ticks/636910475320792762","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"34044e39-98e8-4a4f-bf47-b7c596306cf8","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:52.0792762Z","submissionTimestamp":"2019-04-16T21:39:14.111694Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"075d3c60-c136-4ef1-9b89-2d8fd4c06002","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/075d3c60-c136-4ef1-9b89-2d8fd4c06002/ticks/636910475270379349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4f0e61aa-b7dd-4213-91fa-80de5105acb4","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"eeae8ad7-ada1-4481-825a-d282672a14b5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"71696d37-6127-4131-aff5-e377507b1a93\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:47.0379349Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"8b567419-431c-4d58-8872-60d108d53351","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/8b567419-431c-4d58-8872-60d108d53351/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"e89ae20d-c9ed-471f-a409-62ba5c91d2e1","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e52fc921-cc50-43fa-9bfc-b562a9e59608\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:53:06.8560005Z","submissionTimestamp":"2019-04-30T01:53:24.0676192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"d11c3ded-5c7e-47a6-8de7-3ec811caaeba","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/d11c3ded-5c7e-47a6-8de7-3ec811caaeba/ticks/636921859553797850","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3eabfab0-13cf-4633-8568-51be03072bf8","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:35.379785Z","submissionTimestamp":"2019-04-30T01:52:53.0634424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"3a593aaf-5097-4686-82cb-a41cd37d1009","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/3a593aaf-5097-4686-82cb-a41cd37d1009/ticks/636921859428162459","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f4f565d2-5525-468b-8e1e-945da813b9a2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:22.8162459Z","submissionTimestamp":"2019-04-30T01:52:46.2063018Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3/ticks/636921859425862487","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:22.5862487Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"80a8d968-baba-459e-bdcf-518622b51564","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/80a8d968-baba-459e-bdcf-518622b51564/ticks/636921859416363138","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.6363138Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5061acc6-44d1-479f-b1f1-589d23558015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/5061acc6-44d1-479f-b1f1-589d23558015/ticks/636921859414573013","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"51899d6b-3bd1-42a4-b534-9331bf439240"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.4573013Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"97ff2468-5e49-4fcb-b996-113d447e1f6f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/97ff2468-5e49-4fcb-b996-113d447e1f6f/ticks/636921859413782584","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d6d9aa02-e2c8-4f78-be30-9fe3f5fac20a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.3782584Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e4b05791-e368-498c-a00d-67079f774737","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/e4b05791-e368-498c-a00d-67079f774737/ticks/636921859412172632","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.2172632Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"71cb0d4b-2425-481c-ab92-c4a22770338c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/71cb0d4b-2425-481c-ab92-c4a22770338c/ticks/636921859411332274","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.1332274Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"a67df809-d685-4718-bea8-b89ae9d96827","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/a67df809-d685-4718-bea8-b89ae9d96827/ticks/636921859408363168","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:20.8363168Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"48ba5cb5-de36-42f1-84ba-0e39d967f818","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/48ba5cb5-de36-42f1-84ba-0e39d967f818/ticks/636921859383403135","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:18.3403135Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e6a45cc6-54ae-47ae-8753-b231807a8639","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/e6a45cc6-54ae-47ae-8753-b231807a8639/ticks/636921859374503359","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"087a9cd9-3e8b-4699-81e6-ee3f4b9e070d","responseBody":"{\"name\":\"vm2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0ec4b26-2cd8-43c1-a1e1-ae8fe7b08cf9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:17.4503359Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"190ff315-d18c-4b4c-8124-7ee9411ca76a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/190ff315-d18c-4b4c-8124-7ee9411ca76a/ticks/636921859361981968","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f2a55d34-27b4-43bb-9676-9556d5c02886","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:16.1981968Z","submissionTimestamp":"2019-04-30T01:52:34.176594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ed449b75-784a-4d35-81eb-311902d401c9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/ed449b75-784a-4d35-81eb-311902d401c9/ticks/636921859359203486","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.9203486Z","submissionTimestamp":"2019-04-30T01:52:36.1562956Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"fc994e06-8f24-4ac4-9a62-d85d7058f9b4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/fc994e06-8f24-4ac4-9a62-d85d7058f9b4/ticks/636921859353728946","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f5bcdd13-97aa-4486-a71d-33dd9ec47607","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.3728946Z","submissionTimestamp":"2019-04-30T01:52:34.1755938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ff1df0c0-3035-4d48-afdf-1aefa82bd8ad","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/ff1df0c0-3035-4d48-afdf-1aefa82bd8ad/ticks/636921859301758154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"195c2e7f-9fbc-46c7-935a-b54a39af35bc","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39c887b5-8dee-4401-9af1-57ebbc8e20f4\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"4d12385b-c20e-46bd-af73-28a542371db9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/4d12385b-c20e-46bd-af73-28a542371db9/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"c0443acb-a0fd-4f53-89b9-08238aacbf8a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c0443acb-a0fd-4f53-89b9-08238aacbf8a/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"094ae94c-caff-4c68-a198-78b0b4b0426b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/094ae94c-caff-4c68-a198-78b0b4b0426b/ticks/636910475221032374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1758154Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a/ticks/636921859301158205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3b577252-13c9-46f3-9cf5-c251153cdada","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"86009c64-dcaa-47f1-b517-17bedefd9577\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"eb8c92d5-a10d-4ddf-af92-0ec9fe3323ff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1158205Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5d599dc6-bf02-4e7d-a482-1f8219f67011","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/5d599dc6-bf02-4e7d-a482-1f8219f67011/ticks/636921859299058989","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:09.9058989Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a4c0d8a-215c-4919-aa4f-0d20c120afe2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/5a4c0d8a-215c-4919-aa4f-0d20c120afe2/ticks/636921859272787801","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.2787801Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c8c29451-b4a2-4107-b12c-bd0717e71a8a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c8c29451-b4a2-4107-b12c-bd0717e71a8a/ticks/636921859270837554","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.0837554Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"31edd7bc-f799-40c0-9349-bb02d04be347","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/31edd7bc-f799-40c0-9349-bb02d04be347/ticks/636921859251022044","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:42.1032374Z","submissionTimestamp":"2019-04-16T21:39:03.1482193Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"49032512-1c7f-4b3d-b84c-c93fdbc9916a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/49032512-1c7f-4b3d-b84c-c93fdbc9916a/ticks/636910475172831935","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:37.2831935Z","submissionTimestamp":"2019-04-16T21:38:53.1101279Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:05.1022044Z","submissionTimestamp":"2019-04-30T01:52:22.1086689Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"369f091f-4c2f-45a5-aa3e-fc69630ce646","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/369f091f-4c2f-45a5-aa3e-fc69630ce646/ticks/636921859191371856","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:51:59.1371856Z","submissionTimestamp":"2019-04-30T01:52:12.288708Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '82987' + - '90180' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:00 GMT + - Tue, 30 Apr 2019 01:53:55 GMT expires: - '-1' pragma: @@ -5512,101 +6787,118 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A40%3A10Z%20and%20correlationId%20eq%20%27d431d1ef-0fd0-41dc-996b-ca9ad2612a59%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A54%3A05Z%20and%20correlationId%20eq%20%2708a11057-4d55-4ebd-bbc1-212253a01ce2%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"b76c798c-95fa-4f45-b1b4-5dfe2caae029","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/b76c798c-95fa-4f45-b1b4-5dfe2caae029/ticks/636910475824386200","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3b0c818c-2a93-4905-894a-2d47e7b1d625","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"b8ba5b5a-79fc-4ddb-91ea-43b933b16a47","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/b8ba5b5a-79fc-4ddb-91ea-43b933b16a47/ticks/636921860185949233","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ac6d4406-0c5b-4a42-b77a-c8a27ed86f6f","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:53:38.5949233Z","submissionTimestamp":"2019-04-30T01:53:57.0887677Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"98c09bf5-d8d4-4782-9e73-a38158a0aac3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/98c09bf5-d8d4-4782-9e73-a38158a0aac3/ticks/636921860182099233","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ac6d4406-0c5b-4a42-b77a-c8a27ed86f6f","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:53:38.2099233Z","submissionTimestamp":"2019-04-30T01:53:57.0887677Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"1342318e-68d5-4f2f-adb3-93a60ef5b898","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/1342318e-68d5-4f2f-adb3-93a60ef5b898/ticks/636921860177852951","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"68d5f20f-efc1-4c7d-a5ee-09837d9ed6fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:53:37.7852951Z","submissionTimestamp":"2019-04-30T01:53:56.0682253Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"cdab32e3-ecce-4513-b67e-ae9293d49458","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/cdab32e3-ecce-4513-b67e-ae9293d49458/ticks/636921860176302329","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ac6d4406-0c5b-4a42-b77a-c8a27ed86f6f","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:53:37.6302329Z","submissionTimestamp":"2019-04-30T01:53:57.0887677Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c1b8af16-ebcb-44f9-9495-e306eeed782e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/c1b8af16-ebcb-44f9-9495-e306eeed782e/ticks/636921860024083739","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"4c0eb529-73b5-40c8-8d7d-e4be5c5e6b95","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:53:22.4083739Z","submissionTimestamp":"2019-04-30T01:53:40.0641516Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"24dae094-4014-455f-b989-5170220639b2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/24dae094-4014-455f-b989-5170220639b2/ticks/636921859868560005","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"22845a1c-a483-4675-8ff6-4efcf98d7b41","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:42.43862Z","submissionTimestamp":"2019-04-16T21:40:01.0882568Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"45e0969f-e50d-405a-a9e1-b4898ac10c30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/45e0969f-e50d-405a-a9e1-b4898ac10c30/ticks/636910475519058365","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9606c761-7a0c-4d95-b8c2-71a9b9722ba8","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:53:06.8560005Z","submissionTimestamp":"2019-04-30T01:53:24.0676192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"d11c3ded-5c7e-47a6-8de7-3ec811caaeba","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/d11c3ded-5c7e-47a6-8de7-3ec811caaeba/ticks/636921859553797850","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3eabfab0-13cf-4633-8568-51be03072bf8","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:11.9058365Z","submissionTimestamp":"2019-04-16T21:39:34.1036039Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"ff371d5b-981c-42b5-b1b3-2e8453fa2541","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e7bfa602-47e9-4b17-bf36-52f19783cfec","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/ff371d5b-981c-42b5-b1b3-2e8453fa2541/ticks/636910475401589671","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"bb3564b8-350c-430a-9f4a-04125f552c96"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:00.1589671Z","submissionTimestamp":"2019-04-16T21:39:24.0707817Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"8582db92-2859-4250-9887-4abc8543b74e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/8582db92-2859-4250-9887-4abc8543b74e/ticks/636910475399439608","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:59.9439608Z","submissionTimestamp":"2019-04-16T21:39:24.0707817Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"30cf646c-994a-4b5b-b582-9b64e48f97fa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/30cf646c-994a-4b5b-b582-9b64e48f97fa/ticks/636910475390057045","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:59.0057045Z","submissionTimestamp":"2019-04-16T21:39:14.1136973Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"6731ed96-0e2b-4c67-a9ba-3b37919eae6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0/events/6731ed96-0e2b-4c67-a9ba-3b37919eae6a/ticks/636910475383721682","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"15f0d216-783e-41b9-868c-aa9d0bb3d501","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"03d9e005-1483-4b05-ad16-14a9bfd9c6bc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:38:58.3721682Z","submissionTimestamp":"2019-04-16T21:39:17.1059991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"639cfb65-b747-488e-b15e-280ee4c11386","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1/events/639cfb65-b747-488e-b15e-280ee4c11386/ticks/636910475381167244","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1ce87bc4-4e06-4b44-a3de-d36408209eb4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"18e03f26-cbf5-4e01-8389-537d32b45ccd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:38:58.1167244Z","submissionTimestamp":"2019-04-16T21:39:18.1303942Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"2dcac096-7d95-40e3-b561-5cfdd5abb17d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0/events/2dcac096-7d95-40e3-b561-5cfdd5abb17d/ticks/636910475380821276","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"15f0d216-783e-41b9-868c-aa9d0bb3d501","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:58.0821276Z","submissionTimestamp":"2019-04-16T21:39:17.1059991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"29dec889-80dc-412d-a044-717e71428d30","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"77503725-c967-4c66-8d86-07809ea815cb","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1/events/29dec889-80dc-412d-a044-717e71428d30/ticks/636910475379416888","level":"Informational","resourceGroupName":"CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGZECTJCMZCHSSB73XG7O32HBFNE4RAUKLLFDSEDNMEFZZWXA6NPJJHTER53BDP4AV2/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1ce87bc4-4e06-4b44-a3de-d36408209eb4","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:57.9416888Z","submissionTimestamp":"2019-04-16T21:39:18.1303942Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"b2a16dde-f7fb-427d-b94f-0e3a1f4cb375","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/b2a16dde-f7fb-427d-b94f-0e3a1f4cb375/ticks/636910475377520916","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase - Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:57.7520916Z","submissionTimestamp":"2019-04-16T21:39:14.1136973Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"25b36d15-1b6b-4fc7-a18f-e673ede770b0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e7bfa602-47e9-4b17-bf36-52f19783cfec","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/25b36d15-1b6b-4fc7-a18f-e673ede770b0/ticks/636910475350371426","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a4e8b08b-d574-4732-ab91-932644e03b93","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:55.0371426Z","submissionTimestamp":"2019-04-16T21:39:14.1126947Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"7021f6a5-e0e5-4a99-831d-8bd7cab20106","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1c3921f-bc09-484b-9e3f-18ec22ebea5d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/7021f6a5-e0e5-4a99-831d-8bd7cab20106/ticks/636910475340471678","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"34044e39-98e8-4a4f-bf47-b7c596306cf8","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"5ae5a42e-6043-4445-b990-d6c4b50c515c","responseBody":"{\"name\":\"vm2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\"etag\":\"W/\\\"d1bfec5e-6789-4732-94da-566e5072c6bf\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"84f77924-f631-4ea6-bb00-61fa76a6d6ce\",\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\"etag\":\"W/\\\"d1bfec5e-6789-4732-94da-566e5072c6bf\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:54.0471678Z","submissionTimestamp":"2019-04-16T21:39:14.1126947Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"d887a75a-b053-41c1-b81d-dd16a78309df","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/d887a75a-b053-41c1-b81d-dd16a78309df/ticks/636910475330660763","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"65f3dcec-4cb9-41da-b08e-463a644fe62f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:53.0660763Z","submissionTimestamp":"2019-04-16T21:39:18.095913Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"ad2b9f7d-2969-4eb1-8a73-26b1b0e1936c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/ad2b9f7d-2969-4eb1-8a73-26b1b0e1936c/ticks/636910475323506048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"4bba2b6d-3b53-44a9-8252-4003f7473474","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:52.3506048Z","submissionTimestamp":"2019-04-16T21:39:15.0724071Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"243dad68-19ad-4271-8b91-3b59c20d9744","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1c3921f-bc09-484b-9e3f-18ec22ebea5d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/243dad68-19ad-4271-8b91-3b59c20d9744/ticks/636910475320792762","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"34044e39-98e8-4a4f-bf47-b7c596306cf8","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:52.0792762Z","submissionTimestamp":"2019-04-16T21:39:14.111694Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"075d3c60-c136-4ef1-9b89-2d8fd4c06002","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/075d3c60-c136-4ef1-9b89-2d8fd4c06002/ticks/636910475270379349","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4f0e61aa-b7dd-4213-91fa-80de5105acb4","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"eeae8ad7-ada1-4481-825a-d282672a14b5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"71696d37-6127-4131-aff5-e377507b1a93\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:47.0379349Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/1d996daa-4ea7-4bf0-aa5d-8be83ef1ad29/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1180318Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"8b567419-431c-4d58-8872-60d108d53351","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/8b567419-431c-4d58-8872-60d108d53351/ticks/636910475268279059","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"e89ae20d-c9ed-471f-a409-62ba5c91d2e1","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e52fc921-cc50-43fa-9bfc-b562a9e59608\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"171101fe-795d-4de0-879f-bb909fe4f175\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:35.379785Z","submissionTimestamp":"2019-04-30T01:52:53.0634424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"3a593aaf-5097-4686-82cb-a41cd37d1009","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/3a593aaf-5097-4686-82cb-a41cd37d1009/ticks/636921859428162459","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f4f565d2-5525-468b-8e1e-945da813b9a2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:22.8162459Z","submissionTimestamp":"2019-04-30T01:52:46.2063018Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/5a5c3bad-ba42-41f5-b2fb-604e25b4fcf3/ticks/636921859425862487","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:22.5862487Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"80a8d968-baba-459e-bdcf-518622b51564","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/80a8d968-baba-459e-bdcf-518622b51564/ticks/636921859416363138","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"properties":{"statusCode":"OK"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.6363138Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5061acc6-44d1-479f-b1f1-589d23558015","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/5061acc6-44d1-479f-b1f1-589d23558015/ticks/636921859414573013","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"51899d6b-3bd1-42a4-b534-9331bf439240"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.4573013Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"97ff2468-5e49-4fcb-b996-113d447e1f6f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/97ff2468-5e49-4fcb-b996-113d447e1f6f/ticks/636921859413782584","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d6d9aa02-e2c8-4f78-be30-9fe3f5fac20a"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:52:21.3782584Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e4b05791-e368-498c-a00d-67079f774737","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5/events/e4b05791-e368-498c-a00d-67079f774737/ticks/636921859412172632","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"2f77025c-d5d4-4789-8e90-415fdcc6335c","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.2172632Z","submissionTimestamp":"2019-04-30T01:52:46.0723472Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"71cb0d4b-2425-481c-ab92-c4a22770338c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6f99456c-66ea-4ee4-a51b-8ccebc32a49a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a/events/71cb0d4b-2425-481c-ab92-c4a22770338c/ticks/636921859411332274","level":"Informational","resourceGroupName":"CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGEZCBZ5GZ6TWZPUBJUOMDKBUNAQB5J26F7YUP3POOVQRJIIFM327MOUUDXEI72I6RB/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0c5bce64-df16-41bc-83cb-f6d945c4ca11","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:21.1332274Z","submissionTimestamp":"2019-04-30T01:52:43.0893908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"a67df809-d685-4718-bea8-b89ae9d96827","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/a67df809-d685-4718-bea8-b89ae9d96827/ticks/636921859408363168","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Resources/marketplace/purchase/action","localizedValue":"Purchase + Resource"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:20.8363168Z","submissionTimestamp":"2019-04-30T01:52:46.2053006Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"48ba5cb5-de36-42f1-84ba-0e39d967f818","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0687e59-b296-448f-a460-bc43546f168a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2/events/48ba5cb5-de36-42f1-84ba-0e39d967f818/ticks/636921859383403135","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"dd440583-c5b0-4b15-885b-73fe7494e55d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:18.3403135Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"e6a45cc6-54ae-47ae-8753-b231807a8639","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/e6a45cc6-54ae-47ae-8753-b231807a8639/ticks/636921859374503359","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"087a9cd9-3e8b-4699-81e6-ee3f4b9e070d","responseBody":"{\"name\":\"vm2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0ec4b26-2cd8-43c1-a1e1-ae8fe7b08cf9\",\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\"etag\":\"W/\\\"ee5d8a3f-4cee-4466-8732-865fdbdf5eee\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:17.4503359Z","submissionTimestamp":"2019-04-30T01:52:36.1572977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"190ff315-d18c-4b4c-8124-7ee9411ca76a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/190ff315-d18c-4b4c-8124-7ee9411ca76a/ticks/636921859361981968","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"f2a55d34-27b4-43bb-9676-9556d5c02886","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:16.1981968Z","submissionTimestamp":"2019-04-30T01:52:34.176594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ed449b75-784a-4d35-81eb-311902d401c9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5aeed345-383b-42b6-9961-362c616c0be8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/events/ed449b75-784a-4d35-81eb-311902d401c9/ticks/636921859359203486","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"a6606f6c-f446-429a-9274-b253af0e60dc","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.9203486Z","submissionTimestamp":"2019-04-30T01:52:36.1562956Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"fc994e06-8f24-4ac4-9a62-d85d7058f9b4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/fc994e06-8f24-4ac4-9a62-d85d7058f9b4/ticks/636921859353728946","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f5bcdd13-97aa-4486-a71d-33dd9ec47607","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:15.3728946Z","submissionTimestamp":"2019-04-30T01:52:34.1755938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"ff1df0c0-3035-4d48-afdf-1aefa82bd8ad","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/ff1df0c0-3035-4d48-afdf-1aefa82bd8ad/ticks/636921859301758154","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"195c2e7f-9fbc-46c7-935a-b54a39af35bc","responseBody":"{\"name\":\"vm2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"39c887b5-8dee-4401-9af1-57ebbc8e20f4\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"f74a37c7-d286-4730-9095-c445dceaf8ab\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:46.8279059Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"4d12385b-c20e-46bd-af73-28a542371db9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c5bee2c4-f417-4ce5-bd4e-47180f3dd18c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/4d12385b-c20e-46bd-af73-28a542371db9/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b321c24d-0d58-4ed2-9151-c3f5bf785c3f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"c0443acb-a0fd-4f53-89b9-08238aacbf8a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c3057b69-b740-404c-af7e-864699b54da6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c0443acb-a0fd-4f53-89b9-08238aacbf8a/ticks/636910475239172160","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"2cc56efd-6d4e-4bba-be0b-895481146a64","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:43.917216Z","submissionTimestamp":"2019-04-16T21:39:04.1170306Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"094ae94c-caff-4c68-a198-78b0b4b0426b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/094ae94c-caff-4c68-a198-78b0b4b0426b/ticks/636910475221032374","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1758154Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/6d455c86-3f0c-4b6c-b6a5-66cc3cd20b8a/ticks/636921859301158205","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3b577252-13c9-46f3-9cf5-c251153cdada","responseBody":"{\"name\":\"vm2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\"etag\":\"W/\\\"86009c64-dcaa-47f1-b517-17bedefd9577\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"eb8c92d5-a10d-4ddf-af92-0ec9fe3323ff\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:10.1158205Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5d599dc6-bf02-4e7d-a482-1f8219f67011","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/5d599dc6-bf02-4e7d-a482-1f8219f67011/ticks/636921859299058989","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:09.9058989Z","submissionTimestamp":"2019-04-30T01:52:36.1532929Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"5a4c0d8a-215c-4919-aa4f-0d20c120afe2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9ba1c05-3e8a-423d-a330-58b186132c25","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG/events/5a4c0d8a-215c-4919-aa4f-0d20c120afe2/ticks/636921859272787801","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"ac8ba9c5-8825-4cd8-8b1d-8663be0ad82d","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.2787801Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"c8c29451-b4a2-4107-b12c-bd0717e71a8a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6c154e1b-1101-477a-b157-d5feea236a03","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP/events/c8c29451-b4a2-4107-b12c-bd0717e71a8a/ticks/636921859270837554","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"66c13455-2840-43ff-88c2-0d050c42bf24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:52:07.0837554Z","submissionTimestamp":"2019-04-30T01:52:26.0886277Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"31edd7bc-f799-40c0-9349-bb02d04be347","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/31edd7bc-f799-40c0-9349-bb02d04be347/ticks/636921859251022044","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:38:42.1032374Z","submissionTimestamp":"2019-04-16T21:39:03.1482193Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","description":"","eventDataId":"49032512-1c7f-4b3d-b84c-c93fdbc9916a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fb3edc36-608f-11e9-aa5a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai/events/49032512-1c7f-4b3d-b84c-c93fdbc9916a/ticks/636910475172831935","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:38:37.2831935Z","submissionTimestamp":"2019-04-16T21:38:53.1101279Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:52:05.1022044Z","submissionTimestamp":"2019-04-30T01:52:22.1086689Z","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/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","description":"","eventDataId":"369f091f-4c2f-45a5-aa3e-fc69630ce646","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89915cde-6aea-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf/events/369f091f-4c2f-45a5-aa3e-fc69630ce646/ticks/636921859191371856","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:51:59.1371856Z","submissionTimestamp":"2019-04-30T01:52:12.288708Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '86562' + - '104235' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:11 GMT + - Tue, 30 Apr 2019 01:54:04 GMT expires: - '-1' pragma: @@ -5639,10 +6931,10 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461561665668774?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450177645748360?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -5654,7 +6946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:12 GMT + - Tue, 30 Apr 2019 01:54:05 GMT expires: - '-1' pragma: @@ -5683,13 +6975,13 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","name":"vm_deploy_utAAO1QrB4qYfVAioQD6x6ngBAwloIai","properties":{"templateHash":"12610281278571600451","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:40:12.4308047Z","duration":"PT1M33.5200578S","correlationId":"d431d1ef-0fd0-41dc-996b-ca9ad2612a59","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/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","name":"vm_deploy_NIBZ4rS6i2BGm6mE9YWKyy8AfKTMU0Lf","properties":{"templateHash":"12605080563092288409","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:53:37.4755857Z","duration":"PT1M36.5727998S","correlationId":"08a11057-4d55-4ebd-bbc1-212253a01ce2","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/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}' headers: cache-control: - no-cache @@ -5698,7 +6990,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:12 GMT + - Tue, 30 Apr 2019 01:54:05 GMT expires: - '-1' pragma: @@ -5727,28 +7019,28 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"1d7912e4-299b-48fa-818f-9f3133f0524e\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"edde50f5-5dac-4d67-af53-6ce55a734d5f\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1\",\r\n \ + \ \"name\": \"vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a\"\ \r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_76973330a6864f2b88ff9889a3e809d5\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\":\ \ \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5\"\ \r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"vm2\",\r\n \"adminUsername\": \"sdk-test-admin\"\ @@ -5760,25 +7052,25 @@ interactions: }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ : {\r\n \"computerName\": \"vm2\",\r\n \"osName\": \"ubuntu\",\r\ \n \"osVersion\": \"16.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\"\ - : \"2.2.38\",\r\n \"statuses\": [\r\n {\r\n \"\ + : \"2.2.40\",\r\n \"statuses\": [\r\n {\r\n \"\ code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\"\ ,\r\n \"displayStatus\": \"Ready\",\r\n \"message\"\ - : \"Guest Agent is running\",\r\n \"time\": \"2019-04-16T21:40:11+00:00\"\ + : \"Guest Agent is running\",\r\n \"time\": \"2019-04-30T01:54:05+00:00\"\ \r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n \ - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1\"\ + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-16T21:38:58.9965868+00:00\"\r\n }\r\ - \n ]\r\n },\r\n {\r\n \"name\": \"vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0\"\ + \ \"time\": \"2019-04-30T01:52:22.0610755+00:00\"\r\n }\r\ + \n ]\r\n },\r\n {\r\n \"name\": \"vm2_disk2_76973330a6864f2b88ff9889a3e809d5\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-16T21:38:58.9965868+00:00\"\r\n }\r\ + \ \"time\": \"2019-04-30T01:52:22.0610755+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\": \"2019-04-16T21:40:10.4657776+00:00\"\r\n \ + ,\r\n \"time\": \"2019-04-30T01:53:34.4048798+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\"\ @@ -5795,7 +7087,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:13 GMT + - Tue, 30 Apr 2019 01:54:06 GMT expires: - '-1' pragma: @@ -5812,7 +7104,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31841 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31983 status: code: 200 message: OK @@ -5831,8 +7123,8 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -5840,12 +7132,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"\ - ,\r\n \"etag\": \"W/\\\"55c712cc-d653-4437-98e7-e37376e4b097\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"a957c3c8-04c0-4a22-8bf0-03089c05113b\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"84f77924-f631-4ea6-bb00-61fa76a6d6ce\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0ec4b26-2cd8-43c1-a1e1-ae8fe7b08cf9\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\ - ,\r\n \"etag\": \"W/\\\"55c712cc-d653-4437-98e7-e37376e4b097\\\"\"\ + ,\r\n \"etag\": \"W/\\\"a957c3c8-04c0-4a22-8bf0-03089c05113b\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\"\ @@ -5855,8 +7147,8 @@ interactions: \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\": \"4rnbj0xxnvbe3d225oxzjeu3ef.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-32-EE-EE\",\r\n \"enableAcceleratedNetworking\"\ + internalDomainNameSuffix\": \"ctl03gp4nwhu5ij4wavfwuvzag.dx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-58-D6-7A\",\r\n \"enableAcceleratedNetworking\"\ : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\ \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ @@ -5871,9 +7163,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:14 GMT + - Tue, 30 Apr 2019 01:54:06 GMT etag: - - W/"55c712cc-d653-4437-98e7-e37376e4b097" + - W/"a957c3c8-04c0-4a22-8bf0-03089c05113b" expires: - '-1' pragma: @@ -5907,8 +7199,8 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --plan-publisher --plan-name --plan-product User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -5916,10 +7208,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\"\ - ,\r\n \"etag\": \"W/\\\"56b1bb51-dc4c-4183-bd76-f50967a5dec0\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"dd300b9e-11e7-4bf0-9615-8b02a27e25db\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"71696d37-6127-4131-aff5-e377507b1a93\"\ - ,\r\n \"ipAddress\": \"138.91.159.32\",\r\n \"publicIPAddressVersion\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb8c92d5-a10d-4ddf-af92-0ec9fe3323ff\"\ + ,\r\n \"ipAddress\": \"104.42.183.150\",\r\n \"publicIPAddressVersion\"\ : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\"\ : 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\ @@ -5930,13 +7222,13 @@ interactions: cache-control: - no-cache content-length: - - '1022' + - '1023' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:14 GMT + - Tue, 30 Apr 2019 01:54:07 GMT etag: - - W/"56b1bb51-dc4c-4183-bd76-f50967a5dec0" + - W/"dd300b9e-11e7-4bf0-9615-8b02a27e25db" expires: - '-1' pragma: @@ -5969,28 +7261,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"1d7912e4-299b-48fa-818f-9f3133f0524e\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"edde50f5-5dac-4d67-af53-6ce55a734d5f\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/image1\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1\",\r\n \ + \ \"name\": \"vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a\",\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/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk1_1a9f1ccb2d124b5eb8ced7c9323a3ed1\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk1_78af07f9dc0445f89eb97aeaa118ea8a\"\ \r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_76973330a6864f2b88ff9889a3e809d5\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\":\ \ \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_7cbe6573a68b4bbaaac2f4445da776a0\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_76973330a6864f2b88ff9889a3e809d5\"\ \r\n },\r\n \"diskSizeGB\": 100,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"vm2\",\r\n \"adminUsername\": \"sdk-test-admin\"\ @@ -6013,7 +7305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:14 GMT + - Tue, 30 Apr 2019 01:54:08 GMT expires: - '-1' pragma: @@ -6030,7 +7322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31840 + - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31982 status: code: 200 message: OK @@ -6050,8 +7342,8 @@ interactions: ParameterSetName: - --name --yes --no-wait User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: DELETE @@ -6065,11 +7357,11 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2019 21:40:15 GMT + - Tue, 30 Apr 2019 01:54:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdaRUNUSkNNWkNIU1NCNzNYRzdPMzJIQkZORTRSQVVLTExGRHw5NzYyNTBDOTIyRTQxRTA2LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdFWkNCWjVHWjZUV1pQVUJKVU9NREtCVU5BUUI1SjI2RjdZVXxEOTRCMkMwOEVFNkQ1MzM4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache strict-transport-security: @@ -6077,7 +7369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_custom_image.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_custom_image.yaml index 1d47d0190dd..60dacf543e6 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_custom_image.yaml +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_custom_image.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-04-16T21:39:00Z"}}' + "date": "2019-04-30T01:07:35Z"}}' headers: Accept: - application/json @@ -18,15 +18,15 @@ interactions: ParameterSetName: - --location --name --tag User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:39:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -35,7 +35,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:01 GMT + - Tue, 30 Apr 2019 01:07:38 GMT expires: - '-1' pragma: @@ -63,15 +63,15 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:39:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -80,7 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:02 GMT + - Tue, 30 Apr 2019 01:07:39 GMT expires: - '-1' pragma: @@ -163,13 +163,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:03 GMT + - Tue, 30 Apr 2019 01:07:40 GMT etag: - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' expires: - - Tue, 16 Apr 2019 21:44:03 GMT + - Tue, 30 Apr 2019 01:12:40 GMT source-age: - - '0' + - '205' strict-transport-security: - max-age=31536000 vary: @@ -177,23 +177,23 @@ interactions: via: - 1.1 varnish x-cache: - - MISS + - HIT x-cache-hits: - - '0' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 2acd2160e463d34753975e31c74a92a62e723675 + - 7f35c19f142f7755d06fdf7605e7b211b7972409 x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - FFDA:0B5A:1C90A9:200ED2:5CB64B77 + - E152:0E13:84575:9A924:5CC79F0E x-served-by: - - cache-dfw18622-DFW + - cache-dfw18640-DFW x-timer: - - S1555450744.508266,VS0,VE36 + - S1556586460.499487,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -213,8 +213,8 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.1.1 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-storage/3.1.1 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -230,7 +230,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:03 GMT + - Tue, 30 Apr 2019 01:07:40 GMT expires: - '-1' pragma: @@ -258,8 +258,8 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -275,7 +275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:03 GMT + - Tue, 30 Apr 2019 01:07:40 GMT expires: - '-1' pragma: @@ -293,7 +293,7 @@ interactions: body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"adminPassword": {"type": "securestring", "metadata": {"description": "Secure adminPassword"}}}, "variables": {}, "resources": - [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage4513b69ecd2a1a", + [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage6a7f420fe99d8c", "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], "properties": {"accountType": "Premium_LRS"}}, {"name": "vm-unmanaged-diskVNET", "type": "Microsoft.Network/virtualNetworks", "location": "westus", "apiVersion": @@ -316,12 +316,12 @@ interactions: "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"}}}, {"apiVersion": "2019-03-01", "type": "Microsoft.Compute/virtualMachines", "name": - "vm-unmanaged-disk", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a", + "vm-unmanaged-disk", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c", "Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"}]}, - "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_4513b69ecd", - "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorage4513b69ecd2a1a.blob.core.windows.net/vhds/osdisk_4513b69ecd.vhd"}}, + "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_6a7f420fe9", + "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorage6a7f420fe99d8c.blob.core.windows.net/vhds/osdisk_6a7f420fe9.vhd"}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "vm-unmanaged-disk", "adminUsername": "sdk-test-admin", "adminPassword": "[parameters(\''adminPassword\'')]"}}}], @@ -343,18 +343,18 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","name":"vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","properties":{"templateHash":"1169350155079039683","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:39:07.9054627Z","duration":"PT1.9655298S","correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm-unmanaged-diskVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-unmanaged-diskNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-unmanaged-diskPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-unmanaged-diskVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage4513b69ecd2a1a"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-unmanaged-diskVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-unmanaged-disk"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","name":"vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","properties":{"templateHash":"4615300666144958290","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:07:44.6568323Z","duration":"PT1.2907435S","correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm-unmanaged-diskVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-unmanaged-diskNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-unmanaged-diskPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-unmanaged-diskVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage6a7f420fe99d8c"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-unmanaged-diskVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-unmanaged-disk"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/operationStatuses/08586461561395376992?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/operationStatuses/08586450204221115437?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -362,7 +362,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:08 GMT + - Tue, 30 Apr 2019 01:07:43 GMT expires: - '-1' pragma: @@ -392,12 +392,12 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A39%3A13Z%20and%20correlationId%20eq%20%27aa798629-e12a-4b6d-bbdf-b2d17b6ed51b%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A07%3A51Z%20and%20correlationId%20eq%20%27ec9b62f6-76c0-4f17-8032-1717325cb9de%27 response: body: string: '{"value":[]}' @@ -409,7 +409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:14 GMT + - Tue, 30 Apr 2019 01:07:51 GMT expires: - '-1' pragma: @@ -443,29 +443,24 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A39%3A23Z%20and%20correlationId%20eq%20%27aa798629-e12a-4b6d-bbdf-b2d17b6ed51b%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A02Z%20and%20correlationId%20eq%20%27ec9b62f6-76c0-4f17-8032-1717325cb9de%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c6066f5f-4c59-4ad7-990d-16784435295e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/c6066f5f-4c59-4ad7-990d-16784435295e/ticks/636910475482053627","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:08.2053627Z","submissionTimestamp":"2019-04-16T21:39:22.0981959Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '3808' + - '12' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:24 GMT + - Tue, 30 Apr 2019 01:08:02 GMT expires: - '-1' pragma: @@ -499,36 +494,47 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A39%3A33Z%20and%20correlationId%20eq%20%27aa798629-e12a-4b6d-bbdf-b2d17b6ed51b%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A12Z%20and%20correlationId%20eq%20%27ec9b62f6-76c0-4f17-8032-1717325cb9de%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"8e785c34-26ab-4563-91c2-eca3a8e35a64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/8e785c34-26ab-4563-91c2-eca3a8e35a64/ticks/636910475591671859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8107c467-f3d3-487c-9b7f-fcf6924f9a94","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.1671859Z","submissionTimestamp":"2019-04-16T21:39:32.0830591Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c6066f5f-4c59-4ad7-990d-16784435295e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/c6066f5f-4c59-4ad7-990d-16784435295e/ticks/636910475482053627","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"1791c4a9-9c37-419e-855d-df7d32ad91a8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/1791c4a9-9c37-419e-855d-df7d32ad91a8/ticks/636921832668040309","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8040309Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4c4521a4-631b-4e4e-94f4-c934d4987e83","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8af57d31-f1f7-4bde-9602-edd62172a225","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/4c4521a4-631b-4e4e-94f4-c934d4987e83/ticks/636921832665090628","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.5090628Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"8d19f0eb-212e-45df-b0a1-311c9596c291","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"28709e9d-3f2c-4855-a290-2611e3f6bf97","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/8d19f0eb-212e-45df-b0a1-311c9596c291/ticks/636921832664790302","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4790302Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"2a920fcc-eff8-40e2-8921-2a8dc73cf6c4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85af8c4-f8e9-435c-92a5-224adf85d515","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2a920fcc-eff8-40e2-8921-2a8dc73cf6c4/ticks/636921832664590403","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6de24989-14ff-4f6e-8b11-842733e611e9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4590403Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"f318edab-8d95-4353-ac29-dc8205c2636f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/f318edab-8d95-4353-ac29-dc8205c2636f/ticks/636921832664490639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4490639Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0/ticks/636921832648317397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:08.2053627Z","submissionTimestamp":"2019-04-16T21:39:22.0981959Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"927f8aec-4cf9-45a7-9e73-694355d8d49e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/927f8aec-4cf9-45a7-9e73-694355d8d49e/ticks/636910475440253365","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:04.0253365Z","submissionTimestamp":"2019-04-16T21:39:22.0971952Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:44.8317397Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4802640e-80c0-478f-8194-7ab718d44260","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/4802640e-80c0-478f-8194-7ab718d44260/ticks/636921832615367442","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.5367442Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '11045' + - '30652' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:35 GMT + - Tue, 30 Apr 2019 01:08:13 GMT expires: - '-1' pragma: @@ -560,10 +566,10 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461561395376992?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450204221115437?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -575,7 +581,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:37 GMT + - Tue, 30 Apr 2019 01:08:14 GMT expires: - '-1' pragma: @@ -605,45 +611,65 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A39%3A44Z%20and%20correlationId%20eq%20%27aa798629-e12a-4b6d-bbdf-b2d17b6ed51b%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A23Z%20and%20correlationId%20eq%20%27ec9b62f6-76c0-4f17-8032-1717325cb9de%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"8e785c34-26ab-4563-91c2-eca3a8e35a64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/8e785c34-26ab-4563-91c2-eca3a8e35a64/ticks/636910475591671859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8107c467-f3d3-487c-9b7f-fcf6924f9a94","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.1671859Z","submissionTimestamp":"2019-04-16T21:39:32.0830591Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7d839dc0-6bb8-49cf-9415-b49a98c16ab1","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/7d839dc0-6bb8-49cf-9415-b49a98c16ab1/ticks/636910475581900704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"48b57631-1f07-4bda-8214-ebcf1bbc1123","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a1062be6-83d5-4e14-9117-321bd2ea8fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:18.1900704Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"de46168c-ffc5-470e-85ad-cdf0efb024f4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/de46168c-ffc5-470e-85ad-cdf0efb024f4/ticks/636910475537849427","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.7849427Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b62823fd-f369-48e3-8293-22ded92b19c0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/b62823fd-f369-48e3-8293-22ded92b19c0/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c6066f5f-4c59-4ad7-990d-16784435295e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/c6066f5f-4c59-4ad7-990d-16784435295e/ticks/636910475482053627","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"e836a86e-735a-48c2-a13c-30dc69d87e6b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/e836a86e-735a-48c2-a13c-30dc69d87e6b/ticks/636921832751924082","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"adac9a60-2981-43f3-b47f-f016164a212b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1924082Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"bcdee6b9-8d8f-4005-a087-3e762962e900","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/bcdee6b9-8d8f-4005-a087-3e762962e900/ticks/636921832750423653","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"364fb4a7-6ad4-42e3-a5de-e397ce6895bb","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0423653Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"3c7d4d12-ebae-46a0-8e3c-33fa7cb3a5c2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/3c7d4d12-ebae-46a0-8e3c-33fa7cb3a5c2/ticks/636921832695297859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8af97c2a-c584-4aee-aa08-7a6e39999c63","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e994f7af-ef05-4475-b5e6-584598f30348\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:49.5297859Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"d308db1e-4f97-4721-ad7a-c9e1c160a066","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/d308db1e-4f97-4721-ad7a-c9e1c160a066/ticks/636921832694397657","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:49.4397657Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"1791c4a9-9c37-419e-855d-df7d32ad91a8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/1791c4a9-9c37-419e-855d-df7d32ad91a8/ticks/636921832668040309","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8040309Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4c4521a4-631b-4e4e-94f4-c934d4987e83","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8af57d31-f1f7-4bde-9602-edd62172a225","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/4c4521a4-631b-4e4e-94f4-c934d4987e83/ticks/636921832665090628","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.5090628Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"8d19f0eb-212e-45df-b0a1-311c9596c291","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"28709e9d-3f2c-4855-a290-2611e3f6bf97","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/8d19f0eb-212e-45df-b0a1-311c9596c291/ticks/636921832664790302","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4790302Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"2a920fcc-eff8-40e2-8921-2a8dc73cf6c4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85af8c4-f8e9-435c-92a5-224adf85d515","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2a920fcc-eff8-40e2-8921-2a8dc73cf6c4/ticks/636921832664590403","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6de24989-14ff-4f6e-8b11-842733e611e9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4590403Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"f318edab-8d95-4353-ac29-dc8205c2636f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/f318edab-8d95-4353-ac29-dc8205c2636f/ticks/636921832664490639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4490639Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0/ticks/636921832648317397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:08.2053627Z","submissionTimestamp":"2019-04-16T21:39:22.0981959Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"927f8aec-4cf9-45a7-9e73-694355d8d49e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/927f8aec-4cf9-45a7-9e73-694355d8d49e/ticks/636910475440253365","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:04.0253365Z","submissionTimestamp":"2019-04-16T21:39:22.0971952Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:44.8317397Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4802640e-80c0-478f-8194-7ab718d44260","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/4802640e-80c0-478f-8194-7ab718d44260/ticks/636921832615367442","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.5367442Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '24320' + - '51042' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:45 GMT + - Tue, 30 Apr 2019 01:08:22 GMT expires: - '-1' pragma: @@ -677,60 +703,75 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A39%3A54Z%20and%20correlationId%20eq%20%27aa798629-e12a-4b6d-bbdf-b2d17b6ed51b%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a5e3d571-b1ab-4399-853d-bdf400571ea0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a5e3d571-b1ab-4399-853d-bdf400571ea0/ticks/636910475737538115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"b9346706-ec9c-4185-bd1f-10854aaa4d6c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:33.7538115Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a143837a-ab40-4288-9a77-21bf99efcdd1","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a143837a-ab40-4288-9a77-21bf99efcdd1/ticks/636910475736738098","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:33.6738098Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"97d0cf63-25dc-4783-854a-76bd7bab8093","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/97d0cf63-25dc-4783-854a-76bd7bab8093/ticks/636910475724464457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:32.4464457Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c14ab45f-1665-4760-8c91-6416150b9a52","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c14ab45f-1665-4760-8c91-6416150b9a52/ticks/636910475607892471","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b95c4f2-f317-47d5-818b-9dca61ec771f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:20.7892471Z","submissionTimestamp":"2019-04-16T21:39:47.0761844Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"57e796ee-5884-4889-b934-1a8d7457b4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/57e796ee-5884-4889-b934-1a8d7457b4ec/ticks/636910475599303191","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"baca21f4-0bd8-4fb4-904f-7ef662916434","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.9303191Z","submissionTimestamp":"2019-04-16T21:39:44.0914321Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"8e785c34-26ab-4563-91c2-eca3a8e35a64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/8e785c34-26ab-4563-91c2-eca3a8e35a64/ticks/636910475591671859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8107c467-f3d3-487c-9b7f-fcf6924f9a94","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.1671859Z","submissionTimestamp":"2019-04-16T21:39:32.0830591Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7d839dc0-6bb8-49cf-9415-b49a98c16ab1","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/7d839dc0-6bb8-49cf-9415-b49a98c16ab1/ticks/636910475581900704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"48b57631-1f07-4bda-8214-ebcf1bbc1123","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a1062be6-83d5-4e14-9117-321bd2ea8fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:18.1900704Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"de46168c-ffc5-470e-85ad-cdf0efb024f4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/de46168c-ffc5-470e-85ad-cdf0efb024f4/ticks/636910475537849427","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.7849427Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b62823fd-f369-48e3-8293-22ded92b19c0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/b62823fd-f369-48e3-8293-22ded92b19c0/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c6066f5f-4c59-4ad7-990d-16784435295e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/c6066f5f-4c59-4ad7-990d-16784435295e/ticks/636910475482053627","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A33Z%20and%20correlationId%20eq%20%27ec9b62f6-76c0-4f17-8032-1717325cb9de%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4a86980f-ef8a-49c3-93ec-f5cfc2934e58","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/4a86980f-ef8a-49c3-93ec-f5cfc2934e58/ticks/636921832878665900","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"2503e1b7-59ee-46e9-b791-ebf39f890b5e","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:07.86659Z","submissionTimestamp":"2019-04-30T01:08:27.0759144Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"f00ae332-2f0a-40e9-a8fb-e6f38a4de663","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9494f40b-274c-460b-a8cf-4ebb15176bb5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/f00ae332-2f0a-40e9-a8fb-e6f38a4de663/ticks/636921832772652796","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"744ea646-e49b-4eae-8e8c-09c50a81120b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1990a0e8-4c44-40cc-a639-127a70d52fac","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"189f4222-a5e8-401c-b3ca-cba56f422754\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"26b331c5-48ac-4c63-bc99-928d6655097e\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"189f4222-a5e8-401c-b3ca-cba56f422754\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:57.2652796Z","submissionTimestamp":"2019-04-30T01:08:16.1471111Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"a2b069a3-a24f-48d3-8846-4afc078aff6d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/a2b069a3-a24f-48d3-8846-4afc078aff6d/ticks/636921832752973732","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d91577ed-b18b-4b1d-b880-bbf61fa0d781","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2973732Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"e836a86e-735a-48c2-a13c-30dc69d87e6b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/e836a86e-735a-48c2-a13c-30dc69d87e6b/ticks/636921832751924082","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"adac9a60-2981-43f3-b47f-f016164a212b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1924082Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"bcdee6b9-8d8f-4005-a087-3e762962e900","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/bcdee6b9-8d8f-4005-a087-3e762962e900/ticks/636921832750423653","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"364fb4a7-6ad4-42e3-a5de-e397ce6895bb","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0423653Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"3c7d4d12-ebae-46a0-8e3c-33fa7cb3a5c2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/3c7d4d12-ebae-46a0-8e3c-33fa7cb3a5c2/ticks/636921832695297859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8af97c2a-c584-4aee-aa08-7a6e39999c63","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e994f7af-ef05-4475-b5e6-584598f30348\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:49.5297859Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"d308db1e-4f97-4721-ad7a-c9e1c160a066","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/d308db1e-4f97-4721-ad7a-c9e1c160a066/ticks/636921832694397657","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:49.4397657Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"1791c4a9-9c37-419e-855d-df7d32ad91a8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/1791c4a9-9c37-419e-855d-df7d32ad91a8/ticks/636921832668040309","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8040309Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4c4521a4-631b-4e4e-94f4-c934d4987e83","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8af57d31-f1f7-4bde-9602-edd62172a225","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/4c4521a4-631b-4e4e-94f4-c934d4987e83/ticks/636921832665090628","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.5090628Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"8d19f0eb-212e-45df-b0a1-311c9596c291","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"28709e9d-3f2c-4855-a290-2611e3f6bf97","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/8d19f0eb-212e-45df-b0a1-311c9596c291/ticks/636921832664790302","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4790302Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"2a920fcc-eff8-40e2-8921-2a8dc73cf6c4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85af8c4-f8e9-435c-92a5-224adf85d515","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2a920fcc-eff8-40e2-8921-2a8dc73cf6c4/ticks/636921832664590403","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6de24989-14ff-4f6e-8b11-842733e611e9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4590403Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"f318edab-8d95-4353-ac29-dc8205c2636f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/f318edab-8d95-4353-ac29-dc8205c2636f/ticks/636921832664490639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4490639Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0/ticks/636921832648317397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:08.2053627Z","submissionTimestamp":"2019-04-16T21:39:22.0981959Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"927f8aec-4cf9-45a7-9e73-694355d8d49e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/927f8aec-4cf9-45a7-9e73-694355d8d49e/ticks/636910475440253365","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:04.0253365Z","submissionTimestamp":"2019-04-16T21:39:22.0971952Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:44.8317397Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4802640e-80c0-478f-8194-7ab718d44260","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/4802640e-80c0-478f-8194-7ab718d44260/ticks/636921832615367442","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.5367442Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '42451' + - '63959' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:55 GMT + - Tue, 30 Apr 2019 01:08:34 GMT expires: - '-1' pragma: @@ -764,105 +805,80 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A40%3A05Z%20and%20correlationId%20eq%20%27aa798629-e12a-4b6d-bbdf-b2d17b6ed51b%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a5e3d571-b1ab-4399-853d-bdf400571ea0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a5e3d571-b1ab-4399-853d-bdf400571ea0/ticks/636910475737538115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"b9346706-ec9c-4185-bd1f-10854aaa4d6c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:33.7538115Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a143837a-ab40-4288-9a77-21bf99efcdd1","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a143837a-ab40-4288-9a77-21bf99efcdd1/ticks/636910475736738098","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:33.6738098Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"97d0cf63-25dc-4783-854a-76bd7bab8093","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/97d0cf63-25dc-4783-854a-76bd7bab8093/ticks/636910475724464457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:32.4464457Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"d481633b-92fd-455c-9d78-c01abc9c7356","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/d481633b-92fd-455c-9d78-c01abc9c7356/ticks/636910475717197336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"4d198f77-685e-4afa-a9e0-b418bac90341","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:31.7197336Z","submissionTimestamp":"2019-04-16T21:39:59.0649811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c14ab45f-1665-4760-8c91-6416150b9a52","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c14ab45f-1665-4760-8c91-6416150b9a52/ticks/636910475607892471","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b95c4f2-f317-47d5-818b-9dca61ec771f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:20.7892471Z","submissionTimestamp":"2019-04-16T21:39:47.0761844Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"57e796ee-5884-4889-b934-1a8d7457b4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/57e796ee-5884-4889-b934-1a8d7457b4ec/ticks/636910475599303191","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"baca21f4-0bd8-4fb4-904f-7ef662916434","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.9303191Z","submissionTimestamp":"2019-04-16T21:39:44.0914321Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"8e785c34-26ab-4563-91c2-eca3a8e35a64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/8e785c34-26ab-4563-91c2-eca3a8e35a64/ticks/636910475591671859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8107c467-f3d3-487c-9b7f-fcf6924f9a94","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.1671859Z","submissionTimestamp":"2019-04-16T21:39:32.0830591Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7d839dc0-6bb8-49cf-9415-b49a98c16ab1","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/7d839dc0-6bb8-49cf-9415-b49a98c16ab1/ticks/636910475581900704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"48b57631-1f07-4bda-8214-ebcf1bbc1123","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a1062be6-83d5-4e14-9117-321bd2ea8fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:18.1900704Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c771c4e7-487c-4781-891c-ec48d046a788","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/c771c4e7-487c-4781-891c-ec48d046a788/ticks/636910475574266612","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:17.4266612Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c2b27b3f-c99e-4e4f-b0c8-923f293d3050","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c2b27b3f-c99e-4e4f-b0c8-923f293d3050/ticks/636910475540099099","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"6086afdb-c832-4bb9-b7c2-469a9b66f5c8","responseBody":"{\"name\":\"vm-unmanaged-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\",\"etag\":\"W/\\\"e1dcf02e-39c7-4c2c-97a0-ab7b3d40f47c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1d8083e4-d880-48eb-be0d-101fdeae286d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:14.0099099Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7ce504f4-912f-4fdd-a663-73393e9e2985","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/7ce504f4-912f-4fdd-a663-73393e9e2985/ticks/636910475539299457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.9299457Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"ac25f125-f1b2-4c60-a66a-f8aa6d24a315","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/ac25f125-f1b2-4c60-a66a-f8aa6d24a315/ticks/636910475538649405","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"5bb95be0-a6a8-4656-8a88-30776c384aad","responseBody":"{\"name\":\"vm-unmanaged-diskVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"382c9b1e-f655-4143-9105-f168416ce1b0\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-unmanaged-diskSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.8649405Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"4d470a8b-04bf-4bad-9be1-4a38509d73e3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/4d470a8b-04bf-4bad-9be1-4a38509d73e3/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"917ea46d-7a43-4eb1-8111-946302101713"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"68e3334f-9c05-48b7-82f1-97aa6b8770b7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"de46168c-ffc5-470e-85ad-cdf0efb024f4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/de46168c-ffc5-470e-85ad-cdf0efb024f4/ticks/636910475537849427","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.7849427Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"270f5ff7-f088-4fe1-8cad-568b03e692cf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/270f5ff7-f088-4fe1-8cad-568b03e692cf/ticks/636910475537599381","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4fde9e48-efaa-4ccc-8445-1f6854e8c865","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a37c7498-2a9d-4af2-b6f2-28d85424face\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A44Z%20and%20correlationId%20eq%20%27ec9b62f6-76c0-4f17-8032-1717325cb9de%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"2f248d8c-049e-4c86-9058-2a660ff6347f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/2f248d8c-049e-4c86-9058-2a660ff6347f/ticks/636921832915716931","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5c928797-2827-4f70-a28a-6b5e5abbfe63","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:11.5716931Z","submissionTimestamp":"2019-04-30T01:08:36.1219974Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"e6f08e4d-a8db-46b8-8100-769b483c601c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c59a5af8-dfc3-4b81-8ce7-b4e1fd52643c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/e6f08e4d-a8db-46b8-8100-769b483c601c/ticks/636921832894671397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5c928797-2827-4f70-a28a-6b5e5abbfe63","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:09.4671397Z","submissionTimestamp":"2019-04-30T01:08:36.1209962Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4a86980f-ef8a-49c3-93ec-f5cfc2934e58","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/4a86980f-ef8a-49c3-93ec-f5cfc2934e58/ticks/636921832878665900","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"2503e1b7-59ee-46e9-b791-ebf39f890b5e","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:07.86659Z","submissionTimestamp":"2019-04-30T01:08:27.0759144Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"f00ae332-2f0a-40e9-a8fb-e6f38a4de663","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9494f40b-274c-460b-a8cf-4ebb15176bb5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/f00ae332-2f0a-40e9-a8fb-e6f38a4de663/ticks/636921832772652796","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"744ea646-e49b-4eae-8e8c-09c50a81120b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1990a0e8-4c44-40cc-a639-127a70d52fac","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"189f4222-a5e8-401c-b3ca-cba56f422754\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"26b331c5-48ac-4c63-bc99-928d6655097e\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"189f4222-a5e8-401c-b3ca-cba56f422754\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:57.2652796Z","submissionTimestamp":"2019-04-30T01:08:16.1471111Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"a2b069a3-a24f-48d3-8846-4afc078aff6d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/a2b069a3-a24f-48d3-8846-4afc078aff6d/ticks/636921832752973732","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d91577ed-b18b-4b1d-b880-bbf61fa0d781","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2973732Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"e836a86e-735a-48c2-a13c-30dc69d87e6b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/e836a86e-735a-48c2-a13c-30dc69d87e6b/ticks/636921832751924082","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"adac9a60-2981-43f3-b47f-f016164a212b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1924082Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"bcdee6b9-8d8f-4005-a087-3e762962e900","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/bcdee6b9-8d8f-4005-a087-3e762962e900/ticks/636921832750423653","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"364fb4a7-6ad4-42e3-a5de-e397ce6895bb","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0423653Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"3c7d4d12-ebae-46a0-8e3c-33fa7cb3a5c2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/3c7d4d12-ebae-46a0-8e3c-33fa7cb3a5c2/ticks/636921832695297859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8af97c2a-c584-4aee-aa08-7a6e39999c63","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e994f7af-ef05-4475-b5e6-584598f30348\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.7599381Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"2d8bf659-ebbe-43d4-9f25-958894f763e5","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2d8bf659-ebbe-43d4-9f25-958894f763e5/ticks/636910475527999092","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7999092Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"816ae8ea-51c7-4240-9b32-6e1dd6747a45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/816ae8ea-51c7-4240-9b32-6e1dd6747a45/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b62823fd-f369-48e3-8293-22ded92b19c0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/b62823fd-f369-48e3-8293-22ded92b19c0/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b667d987-d719-427b-a971-1dc31180225a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/b667d987-d719-427b-a971-1dc31180225a/ticks/636910475527099505","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7099505Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"86a03e18-cda2-4835-a797-7f9a0514462d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/86a03e18-cda2-4835-a797-7f9a0514462d/ticks/636910475526348999","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.6348999Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c6066f5f-4c59-4ad7-990d-16784435295e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/c6066f5f-4c59-4ad7-990d-16784435295e/ticks/636910475482053627","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:49.5297859Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"d308db1e-4f97-4721-ad7a-c9e1c160a066","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/d308db1e-4f97-4721-ad7a-c9e1c160a066/ticks/636921832694397657","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:49.4397657Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"1791c4a9-9c37-419e-855d-df7d32ad91a8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/1791c4a9-9c37-419e-855d-df7d32ad91a8/ticks/636921832668040309","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8040309Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4c4521a4-631b-4e4e-94f4-c934d4987e83","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8af57d31-f1f7-4bde-9602-edd62172a225","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/4c4521a4-631b-4e4e-94f4-c934d4987e83/ticks/636921832665090628","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.5090628Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"8d19f0eb-212e-45df-b0a1-311c9596c291","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"28709e9d-3f2c-4855-a290-2611e3f6bf97","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/8d19f0eb-212e-45df-b0a1-311c9596c291/ticks/636921832664790302","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4790302Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"2a920fcc-eff8-40e2-8921-2a8dc73cf6c4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85af8c4-f8e9-435c-92a5-224adf85d515","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2a920fcc-eff8-40e2-8921-2a8dc73cf6c4/ticks/636921832664590403","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6de24989-14ff-4f6e-8b11-842733e611e9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4590403Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"f318edab-8d95-4353-ac29-dc8205c2636f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/f318edab-8d95-4353-ac29-dc8205c2636f/ticks/636921832664490639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4490639Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0/ticks/636921832648317397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:08.2053627Z","submissionTimestamp":"2019-04-16T21:39:22.0981959Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"927f8aec-4cf9-45a7-9e73-694355d8d49e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/927f8aec-4cf9-45a7-9e73-694355d8d49e/ticks/636910475440253365","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:04.0253365Z","submissionTimestamp":"2019-04-16T21:39:22.0971952Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:44.8317397Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4802640e-80c0-478f-8194-7ab718d44260","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/4802640e-80c0-478f-8194-7ab718d44260/ticks/636921832615367442","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.5367442Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '99897' + - '71163' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:06 GMT + - Tue, 30 Apr 2019 01:08:44 GMT expires: - '-1' pragma: @@ -894,10 +910,10 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461561395376992?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450204221115437?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -909,7 +925,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:07 GMT + - Tue, 30 Apr 2019 01:08:45 GMT expires: - '-1' pragma: @@ -939,245 +955,80 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A40%3A15Z%20and%20correlationId%20eq%20%27aa798629-e12a-4b6d-bbdf-b2d17b6ed51b%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"210c186f-c365-4586-b9d9-b0a294b6732f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/210c186f-c365-4586-b9d9-b0a294b6732f/ticks/636910475841422455","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2ecc375c-188e-4a3f-800a-c20ffe7451d9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:44.1422455Z","submissionTimestamp":"2019-04-16T21:40:08.0863438Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a5e3d571-b1ab-4399-853d-bdf400571ea0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a5e3d571-b1ab-4399-853d-bdf400571ea0/ticks/636910475737538115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"b9346706-ec9c-4185-bd1f-10854aaa4d6c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:33.7538115Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a143837a-ab40-4288-9a77-21bf99efcdd1","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a143837a-ab40-4288-9a77-21bf99efcdd1/ticks/636910475736738098","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:33.6738098Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"97d0cf63-25dc-4783-854a-76bd7bab8093","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/97d0cf63-25dc-4783-854a-76bd7bab8093/ticks/636910475724464457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:32.4464457Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"d481633b-92fd-455c-9d78-c01abc9c7356","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/d481633b-92fd-455c-9d78-c01abc9c7356/ticks/636910475717197336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"4d198f77-685e-4afa-a9e0-b418bac90341","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:31.7197336Z","submissionTimestamp":"2019-04-16T21:39:59.0649811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c14ab45f-1665-4760-8c91-6416150b9a52","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c14ab45f-1665-4760-8c91-6416150b9a52/ticks/636910475607892471","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b95c4f2-f317-47d5-818b-9dca61ec771f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:20.7892471Z","submissionTimestamp":"2019-04-16T21:39:47.0761844Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"57e796ee-5884-4889-b934-1a8d7457b4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/57e796ee-5884-4889-b934-1a8d7457b4ec/ticks/636910475599303191","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"baca21f4-0bd8-4fb4-904f-7ef662916434","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.9303191Z","submissionTimestamp":"2019-04-16T21:39:44.0914321Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"8e785c34-26ab-4563-91c2-eca3a8e35a64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/8e785c34-26ab-4563-91c2-eca3a8e35a64/ticks/636910475591671859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8107c467-f3d3-487c-9b7f-fcf6924f9a94","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.1671859Z","submissionTimestamp":"2019-04-16T21:39:32.0830591Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7d839dc0-6bb8-49cf-9415-b49a98c16ab1","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/7d839dc0-6bb8-49cf-9415-b49a98c16ab1/ticks/636910475581900704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"48b57631-1f07-4bda-8214-ebcf1bbc1123","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a1062be6-83d5-4e14-9117-321bd2ea8fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:18.1900704Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c771c4e7-487c-4781-891c-ec48d046a788","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/c771c4e7-487c-4781-891c-ec48d046a788/ticks/636910475574266612","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:17.4266612Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c2b27b3f-c99e-4e4f-b0c8-923f293d3050","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c2b27b3f-c99e-4e4f-b0c8-923f293d3050/ticks/636910475540099099","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"6086afdb-c832-4bb9-b7c2-469a9b66f5c8","responseBody":"{\"name\":\"vm-unmanaged-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\",\"etag\":\"W/\\\"e1dcf02e-39c7-4c2c-97a0-ab7b3d40f47c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1d8083e4-d880-48eb-be0d-101fdeae286d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:14.0099099Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7ce504f4-912f-4fdd-a663-73393e9e2985","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/7ce504f4-912f-4fdd-a663-73393e9e2985/ticks/636910475539299457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.9299457Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"ac25f125-f1b2-4c60-a66a-f8aa6d24a315","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/ac25f125-f1b2-4c60-a66a-f8aa6d24a315/ticks/636910475538649405","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"5bb95be0-a6a8-4656-8a88-30776c384aad","responseBody":"{\"name\":\"vm-unmanaged-diskVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"382c9b1e-f655-4143-9105-f168416ce1b0\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-unmanaged-diskSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.8649405Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"4d470a8b-04bf-4bad-9be1-4a38509d73e3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/4d470a8b-04bf-4bad-9be1-4a38509d73e3/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"917ea46d-7a43-4eb1-8111-946302101713"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"68e3334f-9c05-48b7-82f1-97aa6b8770b7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"de46168c-ffc5-470e-85ad-cdf0efb024f4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/de46168c-ffc5-470e-85ad-cdf0efb024f4/ticks/636910475537849427","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.7849427Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"270f5ff7-f088-4fe1-8cad-568b03e692cf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/270f5ff7-f088-4fe1-8cad-568b03e692cf/ticks/636910475537599381","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4fde9e48-efaa-4ccc-8445-1f6854e8c865","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a37c7498-2a9d-4af2-b6f2-28d85424face\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.7599381Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"2d8bf659-ebbe-43d4-9f25-958894f763e5","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2d8bf659-ebbe-43d4-9f25-958894f763e5/ticks/636910475527999092","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7999092Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"816ae8ea-51c7-4240-9b32-6e1dd6747a45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/816ae8ea-51c7-4240-9b32-6e1dd6747a45/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b62823fd-f369-48e3-8293-22ded92b19c0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/b62823fd-f369-48e3-8293-22ded92b19c0/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b667d987-d719-427b-a971-1dc31180225a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/b667d987-d719-427b-a971-1dc31180225a/ticks/636910475527099505","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7099505Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"86a03e18-cda2-4835-a797-7f9a0514462d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/86a03e18-cda2-4835-a797-7f9a0514462d/ticks/636910475526348999","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.6348999Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c6066f5f-4c59-4ad7-990d-16784435295e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/c6066f5f-4c59-4ad7-990d-16784435295e/ticks/636910475482053627","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:08.2053627Z","submissionTimestamp":"2019-04-16T21:39:22.0981959Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"927f8aec-4cf9-45a7-9e73-694355d8d49e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/927f8aec-4cf9-45a7-9e73-694355d8d49e/ticks/636910475440253365","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:04.0253365Z","submissionTimestamp":"2019-04-16T21:39:22.0971952Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' - headers: - cache-control: - - no-cache - content-length: - - '103516' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 16 Apr 2019 21:40:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --image --use-unmanaged-disk --admin-username --admin-password - User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A40%3A26Z%20and%20correlationId%20eq%20%27aa798629-e12a-4b6d-bbdf-b2d17b6ed51b%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"210c186f-c365-4586-b9d9-b0a294b6732f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/210c186f-c365-4586-b9d9-b0a294b6732f/ticks/636910475841422455","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2ecc375c-188e-4a3f-800a-c20ffe7451d9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:44.1422455Z","submissionTimestamp":"2019-04-16T21:40:08.0863438Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a5e3d571-b1ab-4399-853d-bdf400571ea0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a5e3d571-b1ab-4399-853d-bdf400571ea0/ticks/636910475737538115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"b9346706-ec9c-4185-bd1f-10854aaa4d6c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:33.7538115Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a143837a-ab40-4288-9a77-21bf99efcdd1","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a143837a-ab40-4288-9a77-21bf99efcdd1/ticks/636910475736738098","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:33.6738098Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"97d0cf63-25dc-4783-854a-76bd7bab8093","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/97d0cf63-25dc-4783-854a-76bd7bab8093/ticks/636910475724464457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:32.4464457Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"d481633b-92fd-455c-9d78-c01abc9c7356","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/d481633b-92fd-455c-9d78-c01abc9c7356/ticks/636910475717197336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"4d198f77-685e-4afa-a9e0-b418bac90341","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:31.7197336Z","submissionTimestamp":"2019-04-16T21:39:59.0649811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c14ab45f-1665-4760-8c91-6416150b9a52","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c14ab45f-1665-4760-8c91-6416150b9a52/ticks/636910475607892471","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b95c4f2-f317-47d5-818b-9dca61ec771f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:20.7892471Z","submissionTimestamp":"2019-04-16T21:39:47.0761844Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"57e796ee-5884-4889-b934-1a8d7457b4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/57e796ee-5884-4889-b934-1a8d7457b4ec/ticks/636910475599303191","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"baca21f4-0bd8-4fb4-904f-7ef662916434","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.9303191Z","submissionTimestamp":"2019-04-16T21:39:44.0914321Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"8e785c34-26ab-4563-91c2-eca3a8e35a64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/8e785c34-26ab-4563-91c2-eca3a8e35a64/ticks/636910475591671859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8107c467-f3d3-487c-9b7f-fcf6924f9a94","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.1671859Z","submissionTimestamp":"2019-04-16T21:39:32.0830591Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7d839dc0-6bb8-49cf-9415-b49a98c16ab1","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/7d839dc0-6bb8-49cf-9415-b49a98c16ab1/ticks/636910475581900704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"48b57631-1f07-4bda-8214-ebcf1bbc1123","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a1062be6-83d5-4e14-9117-321bd2ea8fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:18.1900704Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c771c4e7-487c-4781-891c-ec48d046a788","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/c771c4e7-487c-4781-891c-ec48d046a788/ticks/636910475574266612","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:17.4266612Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c2b27b3f-c99e-4e4f-b0c8-923f293d3050","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c2b27b3f-c99e-4e4f-b0c8-923f293d3050/ticks/636910475540099099","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"6086afdb-c832-4bb9-b7c2-469a9b66f5c8","responseBody":"{\"name\":\"vm-unmanaged-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\",\"etag\":\"W/\\\"e1dcf02e-39c7-4c2c-97a0-ab7b3d40f47c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1d8083e4-d880-48eb-be0d-101fdeae286d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:14.0099099Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7ce504f4-912f-4fdd-a663-73393e9e2985","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/7ce504f4-912f-4fdd-a663-73393e9e2985/ticks/636910475539299457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.9299457Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"ac25f125-f1b2-4c60-a66a-f8aa6d24a315","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/ac25f125-f1b2-4c60-a66a-f8aa6d24a315/ticks/636910475538649405","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"5bb95be0-a6a8-4656-8a88-30776c384aad","responseBody":"{\"name\":\"vm-unmanaged-diskVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"382c9b1e-f655-4143-9105-f168416ce1b0\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-unmanaged-diskSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.8649405Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"4d470a8b-04bf-4bad-9be1-4a38509d73e3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/4d470a8b-04bf-4bad-9be1-4a38509d73e3/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"917ea46d-7a43-4eb1-8111-946302101713"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"68e3334f-9c05-48b7-82f1-97aa6b8770b7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"de46168c-ffc5-470e-85ad-cdf0efb024f4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/de46168c-ffc5-470e-85ad-cdf0efb024f4/ticks/636910475537849427","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.7849427Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"270f5ff7-f088-4fe1-8cad-568b03e692cf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/270f5ff7-f088-4fe1-8cad-568b03e692cf/ticks/636910475537599381","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4fde9e48-efaa-4ccc-8445-1f6854e8c865","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a37c7498-2a9d-4af2-b6f2-28d85424face\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A54Z%20and%20correlationId%20eq%20%27ec9b62f6-76c0-4f17-8032-1717325cb9de%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"2f248d8c-049e-4c86-9058-2a660ff6347f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/2f248d8c-049e-4c86-9058-2a660ff6347f/ticks/636921832915716931","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5c928797-2827-4f70-a28a-6b5e5abbfe63","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:11.5716931Z","submissionTimestamp":"2019-04-30T01:08:36.1219974Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"e6f08e4d-a8db-46b8-8100-769b483c601c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c59a5af8-dfc3-4b81-8ce7-b4e1fd52643c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/e6f08e4d-a8db-46b8-8100-769b483c601c/ticks/636921832894671397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5c928797-2827-4f70-a28a-6b5e5abbfe63","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:09.4671397Z","submissionTimestamp":"2019-04-30T01:08:36.1209962Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4a86980f-ef8a-49c3-93ec-f5cfc2934e58","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/4a86980f-ef8a-49c3-93ec-f5cfc2934e58/ticks/636921832878665900","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"2503e1b7-59ee-46e9-b791-ebf39f890b5e","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:07.86659Z","submissionTimestamp":"2019-04-30T01:08:27.0759144Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"f00ae332-2f0a-40e9-a8fb-e6f38a4de663","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9494f40b-274c-460b-a8cf-4ebb15176bb5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/f00ae332-2f0a-40e9-a8fb-e6f38a4de663/ticks/636921832772652796","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"744ea646-e49b-4eae-8e8c-09c50a81120b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1990a0e8-4c44-40cc-a639-127a70d52fac","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"189f4222-a5e8-401c-b3ca-cba56f422754\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"26b331c5-48ac-4c63-bc99-928d6655097e\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"189f4222-a5e8-401c-b3ca-cba56f422754\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:57.2652796Z","submissionTimestamp":"2019-04-30T01:08:16.1471111Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"a2b069a3-a24f-48d3-8846-4afc078aff6d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/a2b069a3-a24f-48d3-8846-4afc078aff6d/ticks/636921832752973732","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d91577ed-b18b-4b1d-b880-bbf61fa0d781","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2973732Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"e836a86e-735a-48c2-a13c-30dc69d87e6b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/e836a86e-735a-48c2-a13c-30dc69d87e6b/ticks/636921832751924082","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"adac9a60-2981-43f3-b47f-f016164a212b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1924082Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"bcdee6b9-8d8f-4005-a087-3e762962e900","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/bcdee6b9-8d8f-4005-a087-3e762962e900/ticks/636921832750423653","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"364fb4a7-6ad4-42e3-a5de-e397ce6895bb","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0423653Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"3c7d4d12-ebae-46a0-8e3c-33fa7cb3a5c2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/3c7d4d12-ebae-46a0-8e3c-33fa7cb3a5c2/ticks/636921832695297859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8af97c2a-c584-4aee-aa08-7a6e39999c63","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e994f7af-ef05-4475-b5e6-584598f30348\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.7599381Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"2d8bf659-ebbe-43d4-9f25-958894f763e5","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2d8bf659-ebbe-43d4-9f25-958894f763e5/ticks/636910475527999092","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7999092Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"816ae8ea-51c7-4240-9b32-6e1dd6747a45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/816ae8ea-51c7-4240-9b32-6e1dd6747a45/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b62823fd-f369-48e3-8293-22ded92b19c0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/b62823fd-f369-48e3-8293-22ded92b19c0/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b667d987-d719-427b-a971-1dc31180225a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/b667d987-d719-427b-a971-1dc31180225a/ticks/636910475527099505","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7099505Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"86a03e18-cda2-4835-a797-7f9a0514462d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/86a03e18-cda2-4835-a797-7f9a0514462d/ticks/636910475526348999","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.6348999Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c6066f5f-4c59-4ad7-990d-16784435295e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/c6066f5f-4c59-4ad7-990d-16784435295e/ticks/636910475482053627","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:49.5297859Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"d308db1e-4f97-4721-ad7a-c9e1c160a066","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/d308db1e-4f97-4721-ad7a-c9e1c160a066/ticks/636921832694397657","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:49.4397657Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"1791c4a9-9c37-419e-855d-df7d32ad91a8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/1791c4a9-9c37-419e-855d-df7d32ad91a8/ticks/636921832668040309","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8040309Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4c4521a4-631b-4e4e-94f4-c934d4987e83","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8af57d31-f1f7-4bde-9602-edd62172a225","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/4c4521a4-631b-4e4e-94f4-c934d4987e83/ticks/636921832665090628","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.5090628Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"8d19f0eb-212e-45df-b0a1-311c9596c291","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"28709e9d-3f2c-4855-a290-2611e3f6bf97","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/8d19f0eb-212e-45df-b0a1-311c9596c291/ticks/636921832664790302","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4790302Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"2a920fcc-eff8-40e2-8921-2a8dc73cf6c4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85af8c4-f8e9-435c-92a5-224adf85d515","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2a920fcc-eff8-40e2-8921-2a8dc73cf6c4/ticks/636921832664590403","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6de24989-14ff-4f6e-8b11-842733e611e9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4590403Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"f318edab-8d95-4353-ac29-dc8205c2636f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/f318edab-8d95-4353-ac29-dc8205c2636f/ticks/636921832664490639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4490639Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0/ticks/636921832648317397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:08.2053627Z","submissionTimestamp":"2019-04-16T21:39:22.0981959Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"927f8aec-4cf9-45a7-9e73-694355d8d49e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/927f8aec-4cf9-45a7-9e73-694355d8d49e/ticks/636910475440253365","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:04.0253365Z","submissionTimestamp":"2019-04-16T21:39:22.0971952Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:44.8317397Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4802640e-80c0-478f-8194-7ab718d44260","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/4802640e-80c0-478f-8194-7ab718d44260/ticks/636921832615367442","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.5367442Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '103516' + - '71163' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:27 GMT + - Tue, 30 Apr 2019 01:08:54 GMT expires: - '-1' pragma: @@ -1211,113 +1062,99 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A40%3A36Z%20and%20correlationId%20eq%20%27aa798629-e12a-4b6d-bbdf-b2d17b6ed51b%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"d35a6c6e-05d1-4533-bf7c-671e4326ea9f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/d35a6c6e-05d1-4533-bf7c-671e4326ea9f/ticks/636910476148110463","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"df0af688-a5d6-4733-8ed9-ed97726c3207","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:40:14.8110463Z","submissionTimestamp":"2019-04-16T21:40:30.0823951Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"210c186f-c365-4586-b9d9-b0a294b6732f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/210c186f-c365-4586-b9d9-b0a294b6732f/ticks/636910475841422455","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2ecc375c-188e-4a3f-800a-c20ffe7451d9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:44.1422455Z","submissionTimestamp":"2019-04-16T21:40:08.0863438Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a5e3d571-b1ab-4399-853d-bdf400571ea0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a5e3d571-b1ab-4399-853d-bdf400571ea0/ticks/636910475737538115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"b9346706-ec9c-4185-bd1f-10854aaa4d6c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:33.7538115Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a143837a-ab40-4288-9a77-21bf99efcdd1","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a143837a-ab40-4288-9a77-21bf99efcdd1/ticks/636910475736738098","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:33.6738098Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"97d0cf63-25dc-4783-854a-76bd7bab8093","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/97d0cf63-25dc-4783-854a-76bd7bab8093/ticks/636910475724464457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:32.4464457Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"d481633b-92fd-455c-9d78-c01abc9c7356","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/d481633b-92fd-455c-9d78-c01abc9c7356/ticks/636910475717197336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"4d198f77-685e-4afa-a9e0-b418bac90341","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:31.7197336Z","submissionTimestamp":"2019-04-16T21:39:59.0649811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c14ab45f-1665-4760-8c91-6416150b9a52","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c14ab45f-1665-4760-8c91-6416150b9a52/ticks/636910475607892471","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b95c4f2-f317-47d5-818b-9dca61ec771f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:20.7892471Z","submissionTimestamp":"2019-04-16T21:39:47.0761844Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"57e796ee-5884-4889-b934-1a8d7457b4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/57e796ee-5884-4889-b934-1a8d7457b4ec/ticks/636910475599303191","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"baca21f4-0bd8-4fb4-904f-7ef662916434","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.9303191Z","submissionTimestamp":"2019-04-16T21:39:44.0914321Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"8e785c34-26ab-4563-91c2-eca3a8e35a64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/8e785c34-26ab-4563-91c2-eca3a8e35a64/ticks/636910475591671859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8107c467-f3d3-487c-9b7f-fcf6924f9a94","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.1671859Z","submissionTimestamp":"2019-04-16T21:39:32.0830591Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7d839dc0-6bb8-49cf-9415-b49a98c16ab1","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/7d839dc0-6bb8-49cf-9415-b49a98c16ab1/ticks/636910475581900704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"48b57631-1f07-4bda-8214-ebcf1bbc1123","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a1062be6-83d5-4e14-9117-321bd2ea8fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:18.1900704Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c771c4e7-487c-4781-891c-ec48d046a788","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/c771c4e7-487c-4781-891c-ec48d046a788/ticks/636910475574266612","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:17.4266612Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c2b27b3f-c99e-4e4f-b0c8-923f293d3050","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c2b27b3f-c99e-4e4f-b0c8-923f293d3050/ticks/636910475540099099","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"6086afdb-c832-4bb9-b7c2-469a9b66f5c8","responseBody":"{\"name\":\"vm-unmanaged-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\",\"etag\":\"W/\\\"e1dcf02e-39c7-4c2c-97a0-ab7b3d40f47c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1d8083e4-d880-48eb-be0d-101fdeae286d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:14.0099099Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7ce504f4-912f-4fdd-a663-73393e9e2985","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/7ce504f4-912f-4fdd-a663-73393e9e2985/ticks/636910475539299457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.9299457Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"ac25f125-f1b2-4c60-a66a-f8aa6d24a315","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/ac25f125-f1b2-4c60-a66a-f8aa6d24a315/ticks/636910475538649405","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"5bb95be0-a6a8-4656-8a88-30776c384aad","responseBody":"{\"name\":\"vm-unmanaged-diskVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"382c9b1e-f655-4143-9105-f168416ce1b0\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-unmanaged-diskSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.8649405Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"4d470a8b-04bf-4bad-9be1-4a38509d73e3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/4d470a8b-04bf-4bad-9be1-4a38509d73e3/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"917ea46d-7a43-4eb1-8111-946302101713"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"68e3334f-9c05-48b7-82f1-97aa6b8770b7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"de46168c-ffc5-470e-85ad-cdf0efb024f4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/de46168c-ffc5-470e-85ad-cdf0efb024f4/ticks/636910475537849427","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.7849427Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"270f5ff7-f088-4fe1-8cad-568b03e692cf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/270f5ff7-f088-4fe1-8cad-568b03e692cf/ticks/636910475537599381","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4fde9e48-efaa-4ccc-8445-1f6854e8c865","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a37c7498-2a9d-4af2-b6f2-28d85424face\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A05Z%20and%20correlationId%20eq%20%27ec9b62f6-76c0-4f17-8032-1717325cb9de%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"74bd8170-edbd-4968-9e72-76052d9bc864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c59a5af8-dfc3-4b81-8ce7-b4e1fd52643c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/74bd8170-edbd-4968-9e72-76052d9bc864/ticks/636921832917816758","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5c928797-2827-4f70-a28a-6b5e5abbfe63","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"cc1eda7c-7f45-4d66-a8da-a7c05f60eada"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:11.7816758Z","submissionTimestamp":"2019-04-30T01:08:36.1219974Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"2f248d8c-049e-4c86-9058-2a660ff6347f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/2f248d8c-049e-4c86-9058-2a660ff6347f/ticks/636921832915716931","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5c928797-2827-4f70-a28a-6b5e5abbfe63","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:11.5716931Z","submissionTimestamp":"2019-04-30T01:08:36.1219974Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"e6f08e4d-a8db-46b8-8100-769b483c601c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c59a5af8-dfc3-4b81-8ce7-b4e1fd52643c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/e6f08e4d-a8db-46b8-8100-769b483c601c/ticks/636921832894671397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5c928797-2827-4f70-a28a-6b5e5abbfe63","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:09.4671397Z","submissionTimestamp":"2019-04-30T01:08:36.1209962Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4a86980f-ef8a-49c3-93ec-f5cfc2934e58","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/4a86980f-ef8a-49c3-93ec-f5cfc2934e58/ticks/636921832878665900","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"2503e1b7-59ee-46e9-b791-ebf39f890b5e","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:07.86659Z","submissionTimestamp":"2019-04-30T01:08:27.0759144Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"f00ae332-2f0a-40e9-a8fb-e6f38a4de663","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9494f40b-274c-460b-a8cf-4ebb15176bb5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/f00ae332-2f0a-40e9-a8fb-e6f38a4de663/ticks/636921832772652796","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"744ea646-e49b-4eae-8e8c-09c50a81120b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1990a0e8-4c44-40cc-a639-127a70d52fac","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"189f4222-a5e8-401c-b3ca-cba56f422754\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"26b331c5-48ac-4c63-bc99-928d6655097e\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"189f4222-a5e8-401c-b3ca-cba56f422754\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:57.2652796Z","submissionTimestamp":"2019-04-30T01:08:16.1471111Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"b95bbcd8-6943-4051-ba3a-694f471a3ec2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9494f40b-274c-460b-a8cf-4ebb15176bb5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/b95bbcd8-6943-4051-ba3a-694f471a3ec2/ticks/636921832754153231","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"744ea646-e49b-4eae-8e8c-09c50a81120b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.4153231Z","submissionTimestamp":"2019-04-30T01:08:16.2269011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"a2b069a3-a24f-48d3-8846-4afc078aff6d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/a2b069a3-a24f-48d3-8846-4afc078aff6d/ticks/636921832752973732","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d91577ed-b18b-4b1d-b880-bbf61fa0d781","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2973732Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"e836a86e-735a-48c2-a13c-30dc69d87e6b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/e836a86e-735a-48c2-a13c-30dc69d87e6b/ticks/636921832751924082","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"adac9a60-2981-43f3-b47f-f016164a212b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1924082Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"bcdee6b9-8d8f-4005-a087-3e762962e900","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/bcdee6b9-8d8f-4005-a087-3e762962e900/ticks/636921832750423653","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"364fb4a7-6ad4-42e3-a5de-e397ce6895bb","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0423653Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"e862d385-a80b-4821-9cd9-e8382488f550","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8af57d31-f1f7-4bde-9602-edd62172a225","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/e862d385-a80b-4821-9cd9-e8382488f550/ticks/636921832696547677","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"a50c8cb1-6423-46dd-9b22-0b1cf02bfcc5","responseBody":"{\"name\":\"vm-unmanaged-diskVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\",\"etag\":\"W/\\\"f139c666-3766-4dea-9396-776157c358fa\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a3060738-9a22-4ee9-849f-24510f88bd58\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-unmanaged-diskSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\",\"etag\":\"W/\\\"f139c666-3766-4dea-9396-776157c358fa\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:49.6547677Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"3c7d4d12-ebae-46a0-8e3c-33fa7cb3a5c2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/3c7d4d12-ebae-46a0-8e3c-33fa7cb3a5c2/ticks/636921832695297859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8af97c2a-c584-4aee-aa08-7a6e39999c63","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e994f7af-ef05-4475-b5e6-584598f30348\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.7599381Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"2d8bf659-ebbe-43d4-9f25-958894f763e5","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2d8bf659-ebbe-43d4-9f25-958894f763e5/ticks/636910475527999092","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7999092Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"816ae8ea-51c7-4240-9b32-6e1dd6747a45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/816ae8ea-51c7-4240-9b32-6e1dd6747a45/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b62823fd-f369-48e3-8293-22ded92b19c0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/b62823fd-f369-48e3-8293-22ded92b19c0/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b667d987-d719-427b-a971-1dc31180225a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/b667d987-d719-427b-a971-1dc31180225a/ticks/636910475527099505","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7099505Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"86a03e18-cda2-4835-a797-7f9a0514462d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/86a03e18-cda2-4835-a797-7f9a0514462d/ticks/636910475526348999","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.6348999Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c6066f5f-4c59-4ad7-990d-16784435295e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/c6066f5f-4c59-4ad7-990d-16784435295e/ticks/636910475482053627","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:49.5297859Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"d308db1e-4f97-4721-ad7a-c9e1c160a066","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/d308db1e-4f97-4721-ad7a-c9e1c160a066/ticks/636921832694397657","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:49.4397657Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"37ebfc43-ad51-498a-b79f-99fbd2d88fb5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85af8c4-f8e9-435c-92a5-224adf85d515","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/37ebfc43-ad51-498a-b79f-99fbd2d88fb5/ticks/636921832693797665","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6de24989-14ff-4f6e-8b11-842733e611e9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"cf053727-dcfd-4416-bcba-e667c17ae91c","responseBody":"{\"name\":\"vm-unmanaged-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\",\"etag\":\"W/\\\"e189f709-5d5f-4f0d-9867-31914edec048\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"42680d95-424d-46a6-a561-2d018d6404ec\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:49.3797665Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"ff05c1f0-466b-4a3c-930b-a9d0082a6bc0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"28709e9d-3f2c-4855-a290-2611e3f6bf97","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/ff05c1f0-466b-4a3c-930b-a9d0082a6bc0/ticks/636921832692197436","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"52eaa89b-c7ac-4b86-a0fc-9857ed992490"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-30T01:07:49.2197436Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"1791c4a9-9c37-419e-855d-df7d32ad91a8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/1791c4a9-9c37-419e-855d-df7d32ad91a8/ticks/636921832668040309","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8040309Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4c4521a4-631b-4e4e-94f4-c934d4987e83","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8af57d31-f1f7-4bde-9602-edd62172a225","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/4c4521a4-631b-4e4e-94f4-c934d4987e83/ticks/636921832665090628","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.5090628Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"8d19f0eb-212e-45df-b0a1-311c9596c291","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"28709e9d-3f2c-4855-a290-2611e3f6bf97","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/8d19f0eb-212e-45df-b0a1-311c9596c291/ticks/636921832664790302","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4790302Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"2a920fcc-eff8-40e2-8921-2a8dc73cf6c4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85af8c4-f8e9-435c-92a5-224adf85d515","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2a920fcc-eff8-40e2-8921-2a8dc73cf6c4/ticks/636921832664590403","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6de24989-14ff-4f6e-8b11-842733e611e9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4590403Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"f318edab-8d95-4353-ac29-dc8205c2636f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/f318edab-8d95-4353-ac29-dc8205c2636f/ticks/636921832664490639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4490639Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0/ticks/636921832648317397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:08.2053627Z","submissionTimestamp":"2019-04-16T21:39:22.0981959Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"927f8aec-4cf9-45a7-9e73-694355d8d49e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/927f8aec-4cf9-45a7-9e73-694355d8d49e/ticks/636910475440253365","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:04.0253365Z","submissionTimestamp":"2019-04-16T21:39:22.0971952Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:44.8317397Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4802640e-80c0-478f-8194-7ab718d44260","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/4802640e-80c0-478f-8194-7ab718d44260/ticks/636921832615367442","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.5367442Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '107135' + - '92822' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:38 GMT + - Tue, 30 Apr 2019 01:09:04 GMT expires: - '-1' pragma: @@ -1349,22 +1186,22 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461561395376992?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450204221115437?api-version=2018-05-01 response: body: - string: '{"status":"Running"}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '20' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:40:38 GMT + - Tue, 30 Apr 2019 01:09:14 GMT expires: - '-1' pragma: @@ -1394,404 +1231,109 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A40%3A46Z%20and%20correlationId%20eq%20%27aa798629-e12a-4b6d-bbdf-b2d17b6ed51b%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"d35a6c6e-05d1-4533-bf7c-671e4326ea9f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/d35a6c6e-05d1-4533-bf7c-671e4326ea9f/ticks/636910476148110463","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"df0af688-a5d6-4733-8ed9-ed97726c3207","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:40:14.8110463Z","submissionTimestamp":"2019-04-16T21:40:30.0823951Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"210c186f-c365-4586-b9d9-b0a294b6732f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/210c186f-c365-4586-b9d9-b0a294b6732f/ticks/636910475841422455","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2ecc375c-188e-4a3f-800a-c20ffe7451d9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:44.1422455Z","submissionTimestamp":"2019-04-16T21:40:08.0863438Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a5e3d571-b1ab-4399-853d-bdf400571ea0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a5e3d571-b1ab-4399-853d-bdf400571ea0/ticks/636910475737538115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"b9346706-ec9c-4185-bd1f-10854aaa4d6c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:33.7538115Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a143837a-ab40-4288-9a77-21bf99efcdd1","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a143837a-ab40-4288-9a77-21bf99efcdd1/ticks/636910475736738098","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:33.6738098Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"97d0cf63-25dc-4783-854a-76bd7bab8093","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/97d0cf63-25dc-4783-854a-76bd7bab8093/ticks/636910475724464457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:32.4464457Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"d481633b-92fd-455c-9d78-c01abc9c7356","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/d481633b-92fd-455c-9d78-c01abc9c7356/ticks/636910475717197336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"4d198f77-685e-4afa-a9e0-b418bac90341","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:31.7197336Z","submissionTimestamp":"2019-04-16T21:39:59.0649811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c14ab45f-1665-4760-8c91-6416150b9a52","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c14ab45f-1665-4760-8c91-6416150b9a52/ticks/636910475607892471","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b95c4f2-f317-47d5-818b-9dca61ec771f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:20.7892471Z","submissionTimestamp":"2019-04-16T21:39:47.0761844Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"57e796ee-5884-4889-b934-1a8d7457b4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/57e796ee-5884-4889-b934-1a8d7457b4ec/ticks/636910475599303191","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"baca21f4-0bd8-4fb4-904f-7ef662916434","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.9303191Z","submissionTimestamp":"2019-04-16T21:39:44.0914321Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"8e785c34-26ab-4563-91c2-eca3a8e35a64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/8e785c34-26ab-4563-91c2-eca3a8e35a64/ticks/636910475591671859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8107c467-f3d3-487c-9b7f-fcf6924f9a94","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.1671859Z","submissionTimestamp":"2019-04-16T21:39:32.0830591Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7d839dc0-6bb8-49cf-9415-b49a98c16ab1","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/7d839dc0-6bb8-49cf-9415-b49a98c16ab1/ticks/636910475581900704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"48b57631-1f07-4bda-8214-ebcf1bbc1123","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a1062be6-83d5-4e14-9117-321bd2ea8fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:18.1900704Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c771c4e7-487c-4781-891c-ec48d046a788","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/c771c4e7-487c-4781-891c-ec48d046a788/ticks/636910475574266612","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:17.4266612Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c2b27b3f-c99e-4e4f-b0c8-923f293d3050","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c2b27b3f-c99e-4e4f-b0c8-923f293d3050/ticks/636910475540099099","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"6086afdb-c832-4bb9-b7c2-469a9b66f5c8","responseBody":"{\"name\":\"vm-unmanaged-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\",\"etag\":\"W/\\\"e1dcf02e-39c7-4c2c-97a0-ab7b3d40f47c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1d8083e4-d880-48eb-be0d-101fdeae286d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:14.0099099Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7ce504f4-912f-4fdd-a663-73393e9e2985","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/7ce504f4-912f-4fdd-a663-73393e9e2985/ticks/636910475539299457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.9299457Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"ac25f125-f1b2-4c60-a66a-f8aa6d24a315","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/ac25f125-f1b2-4c60-a66a-f8aa6d24a315/ticks/636910475538649405","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"5bb95be0-a6a8-4656-8a88-30776c384aad","responseBody":"{\"name\":\"vm-unmanaged-diskVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"382c9b1e-f655-4143-9105-f168416ce1b0\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-unmanaged-diskSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.8649405Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"4d470a8b-04bf-4bad-9be1-4a38509d73e3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/4d470a8b-04bf-4bad-9be1-4a38509d73e3/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"917ea46d-7a43-4eb1-8111-946302101713"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"68e3334f-9c05-48b7-82f1-97aa6b8770b7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"de46168c-ffc5-470e-85ad-cdf0efb024f4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/de46168c-ffc5-470e-85ad-cdf0efb024f4/ticks/636910475537849427","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.7849427Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"270f5ff7-f088-4fe1-8cad-568b03e692cf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/270f5ff7-f088-4fe1-8cad-568b03e692cf/ticks/636910475537599381","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4fde9e48-efaa-4ccc-8445-1f6854e8c865","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a37c7498-2a9d-4af2-b6f2-28d85424face\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.7599381Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"2d8bf659-ebbe-43d4-9f25-958894f763e5","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2d8bf659-ebbe-43d4-9f25-958894f763e5/ticks/636910475527999092","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7999092Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"816ae8ea-51c7-4240-9b32-6e1dd6747a45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/816ae8ea-51c7-4240-9b32-6e1dd6747a45/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b62823fd-f369-48e3-8293-22ded92b19c0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/b62823fd-f369-48e3-8293-22ded92b19c0/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b667d987-d719-427b-a971-1dc31180225a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/b667d987-d719-427b-a971-1dc31180225a/ticks/636910475527099505","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7099505Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"86a03e18-cda2-4835-a797-7f9a0514462d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/86a03e18-cda2-4835-a797-7f9a0514462d/ticks/636910475526348999","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.6348999Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c6066f5f-4c59-4ad7-990d-16784435295e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/c6066f5f-4c59-4ad7-990d-16784435295e/ticks/636910475482053627","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:08.2053627Z","submissionTimestamp":"2019-04-16T21:39:22.0981959Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"927f8aec-4cf9-45a7-9e73-694355d8d49e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/927f8aec-4cf9-45a7-9e73-694355d8d49e/ticks/636910475440253365","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:04.0253365Z","submissionTimestamp":"2019-04-16T21:39:22.0971952Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' - headers: - cache-control: - - no-cache - content-length: - - '107135' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 16 Apr 2019 21:40:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --image --use-unmanaged-disk --admin-username --admin-password - User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A40%3A56Z%20and%20correlationId%20eq%20%27aa798629-e12a-4b6d-bbdf-b2d17b6ed51b%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A15Z%20and%20correlationId%20eq%20%27ec9b62f6-76c0-4f17-8032-1717325cb9de%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"659a0801-b400-492d-9184-5b17634a2862","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/659a0801-b400-492d-9184-5b17634a2862/ticks/636910476311036590","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"4cd12d8c-3c46-473f-b778-1bde97c4ece0","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:40:31.103659Z","submissionTimestamp":"2019-04-16T21:40:51.0762082Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"d35a6c6e-05d1-4533-bf7c-671e4326ea9f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/d35a6c6e-05d1-4533-bf7c-671e4326ea9f/ticks/636910476148110463","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"df0af688-a5d6-4733-8ed9-ed97726c3207","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"bfb213db-272a-427b-8de6-2412b02721cf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/bfb213db-272a-427b-8de6-2412b02721cf/ticks/636921833036881969","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"688f5f86-8834-4c81-851c-8ea1c67dd1f5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:40:14.8110463Z","submissionTimestamp":"2019-04-16T21:40:30.0823951Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"210c186f-c365-4586-b9d9-b0a294b6732f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/210c186f-c365-4586-b9d9-b0a294b6732f/ticks/636910475841422455","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2ecc375c-188e-4a3f-800a-c20ffe7451d9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:44.1422455Z","submissionTimestamp":"2019-04-16T21:40:08.0863438Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a5e3d571-b1ab-4399-853d-bdf400571ea0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a5e3d571-b1ab-4399-853d-bdf400571ea0/ticks/636910475737538115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"b9346706-ec9c-4185-bd1f-10854aaa4d6c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:33.7538115Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a143837a-ab40-4288-9a77-21bf99efcdd1","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a143837a-ab40-4288-9a77-21bf99efcdd1/ticks/636910475736738098","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:33.6738098Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"97d0cf63-25dc-4783-854a-76bd7bab8093","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/97d0cf63-25dc-4783-854a-76bd7bab8093/ticks/636910475724464457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:32.4464457Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"d481633b-92fd-455c-9d78-c01abc9c7356","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/d481633b-92fd-455c-9d78-c01abc9c7356/ticks/636910475717197336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"4d198f77-685e-4afa-a9e0-b418bac90341","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:31.7197336Z","submissionTimestamp":"2019-04-16T21:39:59.0649811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c14ab45f-1665-4760-8c91-6416150b9a52","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c14ab45f-1665-4760-8c91-6416150b9a52/ticks/636910475607892471","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b95c4f2-f317-47d5-818b-9dca61ec771f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:20.7892471Z","submissionTimestamp":"2019-04-16T21:39:47.0761844Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"57e796ee-5884-4889-b934-1a8d7457b4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/57e796ee-5884-4889-b934-1a8d7457b4ec/ticks/636910475599303191","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"baca21f4-0bd8-4fb4-904f-7ef662916434","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.9303191Z","submissionTimestamp":"2019-04-16T21:39:44.0914321Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"8e785c34-26ab-4563-91c2-eca3a8e35a64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/8e785c34-26ab-4563-91c2-eca3a8e35a64/ticks/636910475591671859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8107c467-f3d3-487c-9b7f-fcf6924f9a94","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.1671859Z","submissionTimestamp":"2019-04-16T21:39:32.0830591Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7d839dc0-6bb8-49cf-9415-b49a98c16ab1","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/7d839dc0-6bb8-49cf-9415-b49a98c16ab1/ticks/636910475581900704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"48b57631-1f07-4bda-8214-ebcf1bbc1123","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a1062be6-83d5-4e14-9117-321bd2ea8fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:18.1900704Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c771c4e7-487c-4781-891c-ec48d046a788","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/c771c4e7-487c-4781-891c-ec48d046a788/ticks/636910475574266612","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:17.4266612Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c2b27b3f-c99e-4e4f-b0c8-923f293d3050","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c2b27b3f-c99e-4e4f-b0c8-923f293d3050/ticks/636910475540099099","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"6086afdb-c832-4bb9-b7c2-469a9b66f5c8","responseBody":"{\"name\":\"vm-unmanaged-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\",\"etag\":\"W/\\\"e1dcf02e-39c7-4c2c-97a0-ab7b3d40f47c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1d8083e4-d880-48eb-be0d-101fdeae286d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:14.0099099Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7ce504f4-912f-4fdd-a663-73393e9e2985","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/7ce504f4-912f-4fdd-a663-73393e9e2985/ticks/636910475539299457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.9299457Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"ac25f125-f1b2-4c60-a66a-f8aa6d24a315","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/ac25f125-f1b2-4c60-a66a-f8aa6d24a315/ticks/636910475538649405","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"5bb95be0-a6a8-4656-8a88-30776c384aad","responseBody":"{\"name\":\"vm-unmanaged-diskVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"382c9b1e-f655-4143-9105-f168416ce1b0\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-unmanaged-diskSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.8649405Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"4d470a8b-04bf-4bad-9be1-4a38509d73e3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/4d470a8b-04bf-4bad-9be1-4a38509d73e3/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"917ea46d-7a43-4eb1-8111-946302101713"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"68e3334f-9c05-48b7-82f1-97aa6b8770b7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"de46168c-ffc5-470e-85ad-cdf0efb024f4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/de46168c-ffc5-470e-85ad-cdf0efb024f4/ticks/636910475537849427","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.7849427Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"270f5ff7-f088-4fe1-8cad-568b03e692cf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/270f5ff7-f088-4fe1-8cad-568b03e692cf/ticks/636910475537599381","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4fde9e48-efaa-4ccc-8445-1f6854e8c865","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a37c7498-2a9d-4af2-b6f2-28d85424face\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:23.6881969Z","submissionTimestamp":"2019-04-30T01:08:46.0717052Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"74bd8170-edbd-4968-9e72-76052d9bc864","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c59a5af8-dfc3-4b81-8ce7-b4e1fd52643c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/74bd8170-edbd-4968-9e72-76052d9bc864/ticks/636921832917816758","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5c928797-2827-4f70-a28a-6b5e5abbfe63","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"cc1eda7c-7f45-4d66-a8da-a7c05f60eada"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:11.7816758Z","submissionTimestamp":"2019-04-30T01:08:36.1219974Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"2f248d8c-049e-4c86-9058-2a660ff6347f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/2f248d8c-049e-4c86-9058-2a660ff6347f/ticks/636921832915716931","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5c928797-2827-4f70-a28a-6b5e5abbfe63","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:11.5716931Z","submissionTimestamp":"2019-04-30T01:08:36.1219974Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"e6f08e4d-a8db-46b8-8100-769b483c601c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c59a5af8-dfc3-4b81-8ce7-b4e1fd52643c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/e6f08e4d-a8db-46b8-8100-769b483c601c/ticks/636921832894671397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5c928797-2827-4f70-a28a-6b5e5abbfe63","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:09.4671397Z","submissionTimestamp":"2019-04-30T01:08:36.1209962Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4a86980f-ef8a-49c3-93ec-f5cfc2934e58","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/4a86980f-ef8a-49c3-93ec-f5cfc2934e58/ticks/636921832878665900","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"2503e1b7-59ee-46e9-b791-ebf39f890b5e","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:07.86659Z","submissionTimestamp":"2019-04-30T01:08:27.0759144Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"f00ae332-2f0a-40e9-a8fb-e6f38a4de663","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9494f40b-274c-460b-a8cf-4ebb15176bb5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/f00ae332-2f0a-40e9-a8fb-e6f38a4de663/ticks/636921832772652796","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"744ea646-e49b-4eae-8e8c-09c50a81120b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"1990a0e8-4c44-40cc-a639-127a70d52fac","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"189f4222-a5e8-401c-b3ca-cba56f422754\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"26b331c5-48ac-4c63-bc99-928d6655097e\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"189f4222-a5e8-401c-b3ca-cba56f422754\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:57.2652796Z","submissionTimestamp":"2019-04-30T01:08:16.1471111Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"b95bbcd8-6943-4051-ba3a-694f471a3ec2","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9494f40b-274c-460b-a8cf-4ebb15176bb5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/b95bbcd8-6943-4051-ba3a-694f471a3ec2/ticks/636921832754153231","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"744ea646-e49b-4eae-8e8c-09c50a81120b","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.4153231Z","submissionTimestamp":"2019-04-30T01:08:16.2269011Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"a2b069a3-a24f-48d3-8846-4afc078aff6d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/a2b069a3-a24f-48d3-8846-4afc078aff6d/ticks/636921832752973732","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d91577ed-b18b-4b1d-b880-bbf61fa0d781","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.2973732Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"e836a86e-735a-48c2-a13c-30dc69d87e6b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/e836a86e-735a-48c2-a13c-30dc69d87e6b/ticks/636921832751924082","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"adac9a60-2981-43f3-b47f-f016164a212b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.1924082Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"bcdee6b9-8d8f-4005-a087-3e762962e900","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/bcdee6b9-8d8f-4005-a087-3e762962e900/ticks/636921832750423653","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"364fb4a7-6ad4-42e3-a5de-e397ce6895bb","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.0423653Z","submissionTimestamp":"2019-04-30T01:08:14.16131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"e862d385-a80b-4821-9cd9-e8382488f550","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8af57d31-f1f7-4bde-9602-edd62172a225","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/e862d385-a80b-4821-9cd9-e8382488f550/ticks/636921832696547677","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"a50c8cb1-6423-46dd-9b22-0b1cf02bfcc5","responseBody":"{\"name\":\"vm-unmanaged-diskVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\",\"etag\":\"W/\\\"f139c666-3766-4dea-9396-776157c358fa\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a3060738-9a22-4ee9-849f-24510f88bd58\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-unmanaged-diskSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\",\"etag\":\"W/\\\"f139c666-3766-4dea-9396-776157c358fa\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:49.6547677Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"3c7d4d12-ebae-46a0-8e3c-33fa7cb3a5c2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/3c7d4d12-ebae-46a0-8e3c-33fa7cb3a5c2/ticks/636921832695297859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8af97c2a-c584-4aee-aa08-7a6e39999c63","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e994f7af-ef05-4475-b5e6-584598f30348\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"4488b0f2-5370-40f5-b260-720f86c70d7b\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.7599381Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"2d8bf659-ebbe-43d4-9f25-958894f763e5","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2d8bf659-ebbe-43d4-9f25-958894f763e5/ticks/636910475527999092","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7999092Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"816ae8ea-51c7-4240-9b32-6e1dd6747a45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/816ae8ea-51c7-4240-9b32-6e1dd6747a45/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b62823fd-f369-48e3-8293-22ded92b19c0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/b62823fd-f369-48e3-8293-22ded92b19c0/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b667d987-d719-427b-a971-1dc31180225a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/b667d987-d719-427b-a971-1dc31180225a/ticks/636910475527099505","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7099505Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"86a03e18-cda2-4835-a797-7f9a0514462d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/86a03e18-cda2-4835-a797-7f9a0514462d/ticks/636910475526348999","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.6348999Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c6066f5f-4c59-4ad7-990d-16784435295e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/c6066f5f-4c59-4ad7-990d-16784435295e/ticks/636910475482053627","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:08.2053627Z","submissionTimestamp":"2019-04-16T21:39:22.0981959Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"927f8aec-4cf9-45a7-9e73-694355d8d49e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/927f8aec-4cf9-45a7-9e73-694355d8d49e/ticks/636910475440253365","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:04.0253365Z","submissionTimestamp":"2019-04-16T21:39:22.0971952Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' - headers: - cache-control: - - no-cache - content-length: - - '110753' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 16 Apr 2019 21:40:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --image --use-unmanaged-disk --admin-username --admin-password - User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A41%3A07Z%20and%20correlationId%20eq%20%27aa798629-e12a-4b6d-bbdf-b2d17b6ed51b%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"e0f5a3cd-c973-4532-bd70-399fed57cfcd","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/e0f5a3cd-c973-4532-bd70-399fed57cfcd/ticks/636910476425610228","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2f60405a-d7a4-4edf-ac2f-dba78c9ab079","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:40:42.5610228Z","submissionTimestamp":"2019-04-16T21:41:04.0657477Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"659a0801-b400-492d-9184-5b17634a2862","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/659a0801-b400-492d-9184-5b17634a2862/ticks/636910476311036590","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"4cd12d8c-3c46-473f-b778-1bde97c4ece0","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:40:31.103659Z","submissionTimestamp":"2019-04-16T21:40:51.0762082Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"d35a6c6e-05d1-4533-bf7c-671e4326ea9f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/d35a6c6e-05d1-4533-bf7c-671e4326ea9f/ticks/636910476148110463","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"df0af688-a5d6-4733-8ed9-ed97726c3207","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:40:14.8110463Z","submissionTimestamp":"2019-04-16T21:40:30.0823951Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"210c186f-c365-4586-b9d9-b0a294b6732f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/210c186f-c365-4586-b9d9-b0a294b6732f/ticks/636910475841422455","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2ecc375c-188e-4a3f-800a-c20ffe7451d9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:44.1422455Z","submissionTimestamp":"2019-04-16T21:40:08.0863438Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a5e3d571-b1ab-4399-853d-bdf400571ea0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a5e3d571-b1ab-4399-853d-bdf400571ea0/ticks/636910475737538115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"b9346706-ec9c-4185-bd1f-10854aaa4d6c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:33.7538115Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"a143837a-ab40-4288-9a77-21bf99efcdd1","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/a143837a-ab40-4288-9a77-21bf99efcdd1/ticks/636910475736738098","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:33.6738098Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"97d0cf63-25dc-4783-854a-76bd7bab8093","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9d428a9c-1149-4334-8788-5a29382f235f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/events/97d0cf63-25dc-4783-854a-76bd7bab8093/ticks/636910475724464457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"b95bc977-0da1-4357-8ae7-0d7bff599946","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:32.4464457Z","submissionTimestamp":"2019-04-16T21:39:50.1242482Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"d481633b-92fd-455c-9d78-c01abc9c7356","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/d481633b-92fd-455c-9d78-c01abc9c7356/ticks/636910475717197336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"4d198f77-685e-4afa-a9e0-b418bac90341","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:31.7197336Z","submissionTimestamp":"2019-04-16T21:39:59.0649811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c14ab45f-1665-4760-8c91-6416150b9a52","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c14ab45f-1665-4760-8c91-6416150b9a52/ticks/636910475607892471","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b95c4f2-f317-47d5-818b-9dca61ec771f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:20.7892471Z","submissionTimestamp":"2019-04-16T21:39:47.0761844Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"57e796ee-5884-4889-b934-1a8d7457b4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/57e796ee-5884-4889-b934-1a8d7457b4ec/ticks/636910475599303191","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"baca21f4-0bd8-4fb4-904f-7ef662916434","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.9303191Z","submissionTimestamp":"2019-04-16T21:39:44.0914321Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"8e785c34-26ab-4563-91c2-eca3a8e35a64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/8e785c34-26ab-4563-91c2-eca3a8e35a64/ticks/636910475591671859","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8107c467-f3d3-487c-9b7f-fcf6924f9a94","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:19.1671859Z","submissionTimestamp":"2019-04-16T21:39:32.0830591Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7d839dc0-6bb8-49cf-9415-b49a98c16ab1","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/7d839dc0-6bb8-49cf-9415-b49a98c16ab1/ticks/636910475581900704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"48b57631-1f07-4bda-8214-ebcf1bbc1123","responseBody":"{\"name\":\"vm-unmanaged-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a1062be6-83d5-4e14-9117-321bd2ea8fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\",\"etag\":\"W/\\\"ba93704b-38fb-464d-8a78-c9969fcef30f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:18.1900704Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c771c4e7-487c-4781-891c-ec48d046a788","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f17791ff-e6d3-4548-9131-0ef717d3d8b4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/events/c771c4e7-487c-4781-891c-ec48d046a788/ticks/636910475574266612","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"40d3ef2c-3a4e-4a9a-9b37-dc3345dbeea3","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-unmanaged-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:17.4266612Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c2b27b3f-c99e-4e4f-b0c8-923f293d3050","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/c2b27b3f-c99e-4e4f-b0c8-923f293d3050/ticks/636910475540099099","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"6086afdb-c832-4bb9-b7c2-469a9b66f5c8","responseBody":"{\"name\":\"vm-unmanaged-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\",\"etag\":\"W/\\\"e1dcf02e-39c7-4c2c-97a0-ab7b3d40f47c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"1d8083e4-d880-48eb-be0d-101fdeae286d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:14.0099099Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"7ce504f4-912f-4fdd-a663-73393e9e2985","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/7ce504f4-912f-4fdd-a663-73393e9e2985/ticks/636910475539299457","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.9299457Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"ac25f125-f1b2-4c60-a66a-f8aa6d24a315","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/ac25f125-f1b2-4c60-a66a-f8aa6d24a315/ticks/636910475538649405","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"5bb95be0-a6a8-4656-8a88-30776c384aad","responseBody":"{\"name\":\"vm-unmanaged-diskVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"382c9b1e-f655-4143-9105-f168416ce1b0\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-unmanaged-diskSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\",\"etag\":\"W/\\\"e9a60d60-caee-41f5-b648-2e0d245b1526\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.8649405Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"4d470a8b-04bf-4bad-9be1-4a38509d73e3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/4d470a8b-04bf-4bad-9be1-4a38509d73e3/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"917ea46d-7a43-4eb1-8111-946302101713"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/bee9b61e-3b5f-462e-bc1f-ac11e30ab1fc/ticks/636910475538349364","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"68e3334f-9c05-48b7-82f1-97aa6b8770b7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:49.5297859Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"d308db1e-4f97-4721-ad7a-c9e1c160a066","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/d308db1e-4f97-4721-ad7a-c9e1c160a066/ticks/636921832694397657","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:49.4397657Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"37ebfc43-ad51-498a-b79f-99fbd2d88fb5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85af8c4-f8e9-435c-92a5-224adf85d515","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/37ebfc43-ad51-498a-b79f-99fbd2d88fb5/ticks/636921832693797665","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6de24989-14ff-4f6e-8b11-842733e611e9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"cf053727-dcfd-4416-bcba-e667c17ae91c","responseBody":"{\"name\":\"vm-unmanaged-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\",\"etag\":\"W/\\\"e189f709-5d5f-4f0d-9867-31914edec048\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"42680d95-424d-46a6-a561-2d018d6404ec\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:49.3797665Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"9243644a-3e4c-4c2a-abd9-1e1440018bc6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/9243644a-3e4c-4c2a-abd9-1e1440018bc6/ticks/636921832692197436","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"e0680adc-6fb8-4dc4-ab22-c71f373bd59e","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.8349364Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"de46168c-ffc5-470e-85ad-cdf0efb024f4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/de46168c-ffc5-470e-85ad-cdf0efb024f4/ticks/636910475537849427","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:13.7849427Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"270f5ff7-f088-4fe1-8cad-568b03e692cf","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/270f5ff7-f088-4fe1-8cad-568b03e692cf/ticks/636910475537599381","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4fde9e48-efaa-4ccc-8445-1f6854e8c865","responseBody":"{\"name\":\"vm-unmanaged-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a37c7498-2a9d-4af2-b6f2-28d85424face\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"6ff2daa6-cc8c-4aa9-aed1-2b0838347735\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:13.7599381Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"2d8bf659-ebbe-43d4-9f25-958894f763e5","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"053e5399-87ba-4607-87c2-2f4addec6e61","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2d8bf659-ebbe-43d4-9f25-958894f763e5/ticks/636910475527999092","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"bd79bd69-ea6c-4ce8-bc6e-d8eb49e53277","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7999092Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"816ae8ea-51c7-4240-9b32-6e1dd6747a45","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d320439a-ea7f-48cc-93c8-265baf5079e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/816ae8ea-51c7-4240-9b32-6e1dd6747a45/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"856f5e94-7326-4fba-b01b-8749abf657c1","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0914422Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b62823fd-f369-48e3-8293-22ded92b19c0","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c5f781d-a3a4-49f4-af60-32cd8ea8a61a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/b62823fd-f369-48e3-8293-22ded92b19c0/ticks/636910475527949470","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"438df2ba-f2ba-4322-8ad8-c23ec130691e","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.794947Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"b667d987-d719-427b-a971-1dc31180225a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/b667d987-d719-427b-a971-1dc31180225a/ticks/636910475527099505","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.7099505Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"86a03e18-cda2-4835-a797-7f9a0514462d","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"57a0d263-0f6c-4625-a0a1-db0552933b06","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a/events/86a03e18-cda2-4835-a797-7f9a0514462d/ticks/636910475526348999","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b0c80e70-05bf-4ed8-b81b-fb3e63f59ed7","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:12.6348999Z","submissionTimestamp":"2019-04-16T21:39:39.0904405Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"c6066f5f-4c59-4ad7-990d-16784435295e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/c6066f5f-4c59-4ad7-990d-16784435295e/ticks/636910475482053627","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:49.2197436Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"ff05c1f0-466b-4a3c-930b-a9d0082a6bc0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"28709e9d-3f2c-4855-a290-2611e3f6bf97","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/ff05c1f0-466b-4a3c-930b-a9d0082a6bc0/ticks/636921832692197436","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"52eaa89b-c7ac-4b86-a0fc-9857ed992490"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-30T01:07:49.2197436Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"a2eb5d80-848d-4e0b-900d-86d964820866","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/a2eb5d80-848d-4e0b-900d-86d964820866/ticks/636921832691647698","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6de24989-14ff-4f6e-8b11-842733e611e9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:49.1647698Z","submissionTimestamp":"2019-04-30T01:08:16.2228978Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"1791c4a9-9c37-419e-855d-df7d32ad91a8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/1791c4a9-9c37-419e-855d-df7d32ad91a8/ticks/636921832668040309","level":"Warning","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.8040309Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4c4521a4-631b-4e4e-94f4-c934d4987e83","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8af57d31-f1f7-4bde-9602-edd62172a225","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/events/4c4521a4-631b-4e4e-94f4-c934d4987e83/ticks/636921832665090628","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"58d9f37e-e3d3-411e-8b60-c8a7d6dd1587","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\":\"vm-unmanaged-diskSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.5090628Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"8d19f0eb-212e-45df-b0a1-311c9596c291","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"28709e9d-3f2c-4855-a290-2611e3f6bf97","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c/events/8d19f0eb-212e-45df-b0a1-311c9596c291/ticks/636921832664790302","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"91d3f962-c128-43db-9316-d56aaab09a48","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4790302Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"2a920fcc-eff8-40e2-8921-2a8dc73cf6c4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f85af8c4-f8e9-435c-92a5-224adf85d515","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP/events/2a920fcc-eff8-40e2-8921-2a8dc73cf6c4/ticks/636921832664590403","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"6de24989-14ff-4f6e-8b11-842733e611e9","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4590403Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"f318edab-8d95-4353-ac29-dc8205c2636f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"91ea5f7c-27d3-4083-8d3e-a936b1504193","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG/events/f318edab-8d95-4353-ac29-dc8205c2636f/ticks/636921832664490639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"970d860b-1a8f-4e13-90b3-4638c7f94d3b","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.4490639Z","submissionTimestamp":"2019-04-30T01:08:06.0873424Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/6c7c0e01-3a7f-4a57-9788-ae3f8b1101d0/ticks/636921832648317397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:39:08.2053627Z","submissionTimestamp":"2019-04-16T21:39:22.0981959Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","description":"","eventDataId":"927f8aec-4cf9-45a7-9e73-694355d8d49e","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0cb30b22-6090-11e9-8c07-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw/events/927f8aec-4cf9-45a7-9e73-694355d8d49e/ticks/636910475440253365","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:39:04.0253365Z","submissionTimestamp":"2019-04-16T21:39:22.0971952Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:44.8317397Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","description":"","eventDataId":"4802640e-80c0-478f-8194-7ab718d44260","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591185e4-6ae4-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk/events/4802640e-80c0-478f-8194-7ab718d44260/ticks/636921832615367442","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.5367442Z","submissionTimestamp":"2019-04-30T01:08:09.1375945Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '114279' + - '103671' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:41:07 GMT + - Tue, 30 Apr 2019 01:09:15 GMT expires: - '-1' pragma: @@ -1823,56 +1365,13 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461561395376992?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: - - Tue, 16 Apr 2019 21:41:09 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: - - -g -n --image --use-unmanaged-disk --admin-username --admin-password - User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","name":"vm_deploy_Lk9IfZ949Mj74yhX2i1hYli9OW4vsofw","properties":{"templateHash":"1169350155079039683","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:40:43.3001413Z","duration":"PT1M37.3602084S","correlationId":"aa798629-e12a-4b6d-bbdf-b2d17b6ed51b","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm-unmanaged-diskVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-unmanaged-diskNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-unmanaged-diskPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-unmanaged-diskVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage4513b69ecd2a1a"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-unmanaged-diskVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-unmanaged-disk"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage4513b69ecd2a1a"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","name":"vm_deploy_F88v8Es9xMItxkaH9XF7HICHwJfLalKk","properties":{"templateHash":"4615300666144958290","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:09:09.6056315Z","duration":"PT1M26.2395427S","correlationId":"ec9b62f6-76c0-4f17-8032-1717325cb9de","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm-unmanaged-diskVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-unmanaged-diskNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-unmanaged-diskPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-unmanaged-diskVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage6a7f420fe99d8c"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-unmanaged-diskVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-unmanaged-disk"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Storage/storageAccounts/vhdstorage6a7f420fe99d8c"}]}}' headers: cache-control: - no-cache @@ -1881,7 +1380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:41:08 GMT + - Tue, 30 Apr 2019 01:09:15 GMT expires: - '-1' pragma: @@ -1909,22 +1408,22 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"be353e30-e264-4e36-8399-69e902636e6b\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"8d566697-9948-4f38-89bb-e2baf629b952\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ ,\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n\ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"name\": \"osdisk_4513b69ecd\",\r\n \"createOption\": \"FromImage\"\ - ,\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage4513b69ecd2a1a.blob.core.windows.net/vhds/osdisk_4513b69ecd.vhd\"\ + \ \"name\": \"osdisk_6a7f420fe9\",\r\n \"createOption\": \"FromImage\"\ + ,\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage6a7f420fe99d8c.blob.core.windows.net/vhds/osdisk_6a7f420fe9.vhd\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\"\ : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ : {\r\n \"computerName\": \"vm-unmanaged-disk\",\r\n \"adminUsername\"\ @@ -1936,20 +1435,20 @@ interactions: }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ : {\r\n \"computerName\": \"vm-unmanaged-disk\",\r\n \"osName\"\ : \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\ - \n \"vmAgentVersion\": \"2.2.38\",\r\n \"statuses\": [\r\n \ + \n \"vmAgentVersion\": \"2.2.40\",\r\n \"statuses\": [\r\n \ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n\ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ ,\r\n \"message\": \"Guest Agent is running\",\r\n \"\ - time\": \"2019-04-16T21:41:08+00:00\"\r\n }\r\n ],\r\n \ + time\": \"2019-04-30T01:09:15+00:00\"\r\n }\r\n ],\r\n \ \ \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n \ - \ {\r\n \"name\": \"osdisk_4513b69ecd\",\r\n \"statuses\"\ + \ {\r\n \"name\": \"osdisk_6a7f420fe9\",\r\n \"statuses\"\ : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\ - : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-16T21:39:33.5436716+00:00\"\ + : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-30T01:08:10.9083771+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\": \"2019-04-16T21:40:40.9815992+00:00\"\ + \ succeeded\",\r\n \"time\": \"2019-04-30T01:09:06.1608721+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\"\ @@ -1963,7 +1462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:41:09 GMT + - Tue, 30 Apr 2019 01:09:16 GMT expires: - '-1' pragma: @@ -1980,7 +1479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3964,Microsoft.Compute/LowCostGet30Min;31826 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31979 status: code: 200 message: OK @@ -1998,8 +1497,8 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -2007,12 +1506,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm-unmanaged-diskVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\"\ - ,\r\n \"etag\": \"W/\\\"3092d2a1-9f62-4d5a-8d4d-6be77191c945\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"abe3d4a4-d2d9-4330-9c01-b45cfa982efa\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a1062be6-83d5-4e14-9117-321bd2ea8fde\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"26b331c5-48ac-4c63-bc99-928d6655097e\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm-unmanaged-disk\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\"\ - ,\r\n \"etag\": \"W/\\\"3092d2a1-9f62-4d5a-8d4d-6be77191c945\\\"\"\ + ,\r\n \"etag\": \"W/\\\"abe3d4a4-d2d9-4330-9c01-b45cfa982efa\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ @@ -2022,8 +1521,8 @@ interactions: \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\": \"d0nsyocv4zbudeif4fuec1hbwa.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-32-EE-08\",\r\n \"enableAcceleratedNetworking\"\ + internalDomainNameSuffix\": \"hadqnizctluu3be5eriq5cf3la.dx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-32-65-9D\",\r\n \"enableAcceleratedNetworking\"\ : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-unmanaged-diskNSG\"\ \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ @@ -2038,9 +1537,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:41:09 GMT + - Tue, 30 Apr 2019 01:09:17 GMT etag: - - W/"3092d2a1-9f62-4d5a-8d4d-6be77191c945" + - W/"abe3d4a4-d2d9-4330-9c01-b45cfa982efa" expires: - '-1' pragma: @@ -2073,8 +1572,8 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -2082,10 +1581,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vm-unmanaged-diskPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-unmanaged-diskPublicIP\"\ - ,\r\n \"etag\": \"W/\\\"8c0d3d43-51cd-4223-9cb0-ceeed52655fe\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"38c255a9-cbe0-433a-b95e-299bfc9c5ecb\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1d8083e4-d880-48eb-be0d-101fdeae286d\"\ - ,\r\n \"ipAddress\": \"23.99.8.91\",\r\n \"publicIPAddressVersion\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"42680d95-424d-46a6-a561-2d018d6404ec\"\ + ,\r\n \"ipAddress\": \"104.42.35.254\",\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_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\"\ @@ -2096,13 +1595,13 @@ interactions: cache-control: - no-cache content-length: - - '1075' + - '1078' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:41:09 GMT + - Tue, 30 Apr 2019 01:09:16 GMT etag: - - W/"8c0d3d43-51cd-4223-9cb0-ceeed52655fe" + - W/"38c255a9-cbe0-433a-b95e-299bfc9c5ecb" expires: - '-1' pragma: @@ -2140,8 +1639,8 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -2151,17 +1650,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d0029dc2-f873-4a81-9325-e7c541a7969d?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d72c7c60-f19b-4a82-b3e6-8ab82d4c5ed8?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 16 Apr 2019 21:41:10 GMT + - Tue, 30 Apr 2019 01:09:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d0029dc2-f873-4a81-9325-e7c541a7969d?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d72c7c60-f19b-4a82-b3e6-8ab82d4c5ed8?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -2172,7 +1671,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1169 + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2192,30 +1691,30 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d0029dc2-f873-4a81-9325-e7c541a7969d?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d72c7c60-f19b-4a82-b3e6-8ab82d4c5ed8?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:41:11.1224361+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:41:28.6225327+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:18.083267+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:09:36.5683765+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\r\n \"value\": [\r\n {\r\ \n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"\ Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"\ message\": \"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning: commands\ - \ will be executed using /bin/sh\\njob 1 at Tue Apr 16 21:42:00 2019\\n\"\r\ - \n }\r\n ]\r\n}\r\n },\r\n \"name\": \"d0029dc2-f873-4a81-9325-e7c541a7969d\"\ + \ will be executed using /bin/sh\\njob 1 at Tue Apr 30 01:10:00 2019\\n\"\r\ + \n }\r\n ]\r\n}\r\n },\r\n \"name\": \"d72c7c60-f19b-4a82-b3e6-8ab82d4c5ed8\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '530' + - '529' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:41:40 GMT + - Tue, 30 Apr 2019 01:09:47 GMT expires: - '-1' pragma: @@ -2232,7 +1731,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29669 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989 status: code: 200 message: OK @@ -2250,15 +1749,15 @@ interactions: ParameterSetName: - -g -n --command-id --scripts User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d0029dc2-f873-4a81-9325-e7c541a7969d?monitor=true&api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d72c7c60-f19b-4a82-b3e6-8ab82d4c5ed8?monitor=true&api-version=2019-03-01 response: body: string: '{"value":[{"code":"ProvisioningState/succeeded","level":"Info","displayStatus":"Provisioning succeeded","message":"Enable succeeded: \n[stdout]\n\n[stderr]\nwarning: commands - will be executed using /bin/sh\njob 1 at Tue Apr 16 21:42:00 2019\n"}]}' + will be executed using /bin/sh\njob 1 at Tue Apr 30 01:10:00 2019\n"}]}' headers: cache-control: - no-cache @@ -2267,7 +1766,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:41:40 GMT + - Tue, 30 Apr 2019 01:09:47 GMT expires: - '-1' pragma: @@ -2284,7 +1783,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29668 + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988 status: code: 200 message: OK @@ -2304,8 +1803,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -2315,17 +1814,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ce0b1f19-a1d7-41fe-bdfe-05e45e9e5d3a?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 16 Apr 2019 21:42:52 GMT + - Tue, 30 Apr 2019 01:10:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ce0b1f19-a1d7-41fe-bdfe-05e45e9e5d3a?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -2336,7 +1835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1181 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2356,14 +1855,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ce0b1f19-a1d7-41fe-bdfe-05e45e9e5d3a?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:42:52.7223748+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ce0b1f19-a1d7-41fe-bdfe-05e45e9e5d3a\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ \r\n}" headers: cache-control: @@ -2373,7 +1872,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:02 GMT + - Tue, 30 Apr 2019 01:11:09 GMT expires: - '-1' pragma: @@ -2390,7 +1889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29647 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29980 status: code: 200 message: OK @@ -2408,14 +1907,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ce0b1f19-a1d7-41fe-bdfe-05e45e9e5d3a?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:42:52.7223748+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ce0b1f19-a1d7-41fe-bdfe-05e45e9e5d3a\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ \r\n}" headers: cache-control: @@ -2425,7 +1924,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:39 GMT + - Tue, 30 Apr 2019 01:11:46 GMT expires: - '-1' pragma: @@ -2442,7 +1941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29635 + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29976 status: code: 200 message: OK @@ -2460,24 +1959,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ce0b1f19-a1d7-41fe-bdfe-05e45e9e5d3a?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:42:52.7223748+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:43:43.5040095+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"ce0b1f19-a1d7-41fe-bdfe-05e45e9e5d3a\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:08 GMT + - Tue, 30 Apr 2019 01:12:16 GMT expires: - '-1' pragma: @@ -2494,7 +1993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29628 + - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29971 status: code: 200 message: OK @@ -2506,30 +2005,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm generalize + - vm deallocate Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/generalize?api-version=2019-03-01 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 response: body: - string: '' + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '134' + content-type: + - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:09 GMT + - Tue, 30 Apr 2019 01:12:46 GMT expires: - '-1' pragma: @@ -2539,12 +2038,14 @@ interactions: - 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/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1167 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29967 status: code: 200 message: OK @@ -2556,49 +2057,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"be353e30-e264-4e36-8399-69e902636e6b\"\ - ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ - \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ - \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ - ,\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n\ - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"name\": \"osdisk_4513b69ecd\",\r\n \"createOption\": \"FromImage\"\ - ,\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage4513b69ecd2a1a.blob.core.windows.net/vhds/osdisk_4513b69ecd.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\"\ - : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ - : {\r\n \"computerName\": \"vm-unmanaged-disk\",\r\n \"adminUsername\"\ - : \"sdk-test-admin\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\"\ - : [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ - : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\"\ - }]},\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_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk\"\ - ,\r\n \"name\": \"vm-unmanaged-disk\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '1682' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:10 GMT + - Tue, 30 Apr 2019 01:13:16 GMT expires: - '-1' pragma: @@ -2615,7 +2097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3971,Microsoft.Compute/LowCostGet30Min;31792 + - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29964 status: code: 200 message: OK @@ -2627,93 +2109,82 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:39:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '384' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:10 GMT + - Tue, 30 Apr 2019 01:13:46 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;14979,Microsoft.Compute/GetOperation30Min;29960 status: code: 200 message: OK - request: - body: 'b''{"location": "westus", "tags": {}, "properties": {"sourceVirtualMachine": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"}}}''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive - Content-Length: - - '290' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged?api-version=2018-10-01 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk\"\ - \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ - \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage4513b69ecd2a1a.blob.core.windows.net/vhds/osdisk_4513b69ecd.vhd\"\ - ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ - : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ - ,\r\n \"name\": \"img-from-unmanaged\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/97b0a58e-a296-4bbf-aed5-ff2f80c4636d?api-version=2018-10-01 cache-control: - no-cache content-length: - - '1004' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:16 GMT + - Tue, 30 Apr 2019 01:14:17 GMT expires: - '-1' pragma: @@ -2723,15 +2194,17 @@ interactions: - 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/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;191 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29957 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2740,30 +2213,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/97b0a58e-a296-4bbf-aed5-ff2f80c4636d?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:44:11.3635308+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:44:21.5510997+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"97b0a58e-a296-4bbf-aed5-ff2f80c4636d\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:46 GMT + - Tue, 30 Apr 2019 01:14:47 GMT expires: - '-1' pragma: @@ -2780,7 +2253,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29615 + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29955 status: code: 200 message: OK @@ -2792,37 +2265,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk\"\ - \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ - \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage4513b69ecd2a1a.blob.core.windows.net/vhds/osdisk_4513b69ecd.vhd\"\ - ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ - : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ - ,\r\n \"name\": \"img-from-unmanaged\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '1005' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:46 GMT + - Tue, 30 Apr 2019 01:15:17 GMT expires: - '-1' pragma: @@ -2839,7 +2305,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1764 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29952 status: code: 200 message: OK @@ -2851,40 +2317,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:39:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '384' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:47 GMT + - Tue, 30 Apr 2019 01:15:47 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;14982,Microsoft.Compute/GetOperation30Min;29948 status: code: 200 message: OK @@ -2892,104 +2365,51 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - vm deallocate Connection: - keep-alive + ParameterSetName: + - -g -n User-Agent: - - python-requests/2.21.0 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 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/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-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.5\",\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\":\"9\",\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-RAW\",\n \"version\":\"latest\"\n \ - \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ - \ \"offer\":\"SLES\",\n \"sku\":\"15\",\n \"\ - version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ - \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\",\n\ - \ \"sku\":\"18.04-LTS\",\n \"version\":\"latest\"\n\ - \ }\n },\n\n \"Windows\":{\n \"Win2019Datacenter\"\ - :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ - offer\":\"WindowsServer\",\n \"sku\":\"2019-Datacenter\",\n \ - \ \"version\":\"latest\"\n },\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" + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" headers: - accept-ranges: - - bytes - access-control-allow-origin: - - '*' cache-control: - - max-age=300 - connection: - - keep-alive + - no-cache content-length: - - '2433' - content-security-policy: - - default-src 'none'; style-src 'unsafe-inline'; sandbox + - '134' content-type: - - text/plain; charset=utf-8 + - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:48 GMT - etag: - - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' + - Tue, 30 Apr 2019 01:16:17 GMT expires: - - Tue, 16 Apr 2019 21:49:48 GMT - source-age: - - '242' + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - - max-age=31536000 + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - - Authorization,Accept-Encoding - via: - - 1.1 varnish - x-cache: - - HIT - x-cache-hits: - - '1' + - Accept-Encoding x-content-type-options: - nosniff - x-fastly-request-id: - - bbc06f50bb348292bb58ecb91af10eaae5392d7a - x-frame-options: - - deny - x-geo-block-list: - - '' - x-github-request-id: - - BB9E:4B1D:3DDDA0:430655:5CB64BDE - x-served-by: - - cache-sea1045-SEA - x-timer: - - S1555451088.266914,VS0,VE0 - x-xss-protection: - - 1; mode=block + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29945 status: code: 200 message: OK @@ -3001,50 +2421,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm-unmanaged-diskVNET\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\"\ - ,\r\n \"etag\": \"W/\\\"d43e60cc-209d-44b6-ba76-80388c705df2\\\"\",\r\ - \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ - : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"382c9b1e-f655-4143-9105-f168416ce1b0\"\ - ,\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\": \"vm-unmanaged-diskSubnet\",\r\ - \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"\ - ,\r\n \"etag\": \"W/\\\"d43e60cc-209d-44b6-ba76-80388c705df2\\\"\ - \",\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_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\"\ - \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}" + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '2087' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:48 GMT + - Tue, 30 Apr 2019 01:16:48 GMT expires: - '-1' pragma: @@ -3060,40 +2460,1026 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29942 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": - [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vm-managed-diskNSG", - "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": "vm-managed-diskPublicIP", "location": "westus", "tags": {}, "dependsOn": - [], "properties": {"publicIPAllocationMethod": null}}, {"apiVersion": "2015-06-15", - "type": "Microsoft.Network/networkInterfaces", "name": "vm-managed-diskVMNic", - "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG", - "Microsoft.Network/publicIpAddresses/vm-managed-diskPublicIP"], "properties": - {"ipConfigurations": [{"name": "ipconfigvm-managed-disk", "properties": {"privateIPAllocationMethod": - "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet"}, - "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"}}}], - "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"}}}, - {"apiVersion": "2019-03-01", "type": "Microsoft.Compute/virtualMachines", "name": - "vm-managed-disk", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"], - "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": - {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"}]}, - "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": - "ReadWrite", "managedDisk": {"storageAccountType": "standard_lrs"}}, "imageReference": - {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": - "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": "standard_lrs"}, - "createOption": "empty", "diskSizeGB": 1}, {"lun": 1, "managedDisk": {"storageAccountType": - "standard_lrs"}, "createOption": "empty", "diskSizeGB": 1}]}, "osProfile": {"computerName": - "vm-managed-disk", "adminUsername": "sdk-test-admin", "adminPassword": "[parameters(\''adminPassword\'')]"}}}], - "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:17:18 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;14982,Microsoft.Compute/GetOperation30Min;29939 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:17: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 + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29936 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:18: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/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29932 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:18:50 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;14982,Microsoft.Compute/GetOperation30Min;29929 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:19: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/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29927 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:19:50 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;14983,Microsoft.Compute/GetOperation30Min;29924 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:20: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/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29921 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm deallocate + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a1f4d99-d377-4074-aa96-c14de3e043ee?api-version=2019-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-04-30T01:10:59.8059463+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:20:34.2019832+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"5a1f4d99-d377-4074-aa96-c14de3e043ee\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:20:50 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;14982,Microsoft.Compute/GetOperation30Min;29918 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm generalize + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk/generalize?api-version=2019-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 30 Apr 2019 01:20:51 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-resource: + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1195 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"vmId\": \"8d566697-9948-4f38-89bb-e2baf629b952\"\ + ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ + \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ + \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ + ,\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n\ + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ + \ \"name\": \"osdisk_6a7f420fe9\",\r\n \"createOption\": \"FromImage\"\ + ,\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage6a7f420fe99d8c.blob.core.windows.net/vhds/osdisk_6a7f420fe9.vhd\"\ + \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\"\ + : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ + : {\r\n \"computerName\": \"vm-unmanaged-disk\",\r\n \"adminUsername\"\ + : \"sdk-test-admin\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ + : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\"\ + : [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ + : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic\"\ + }]},\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_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk\"\ + ,\r\n \"name\": \"vm-unmanaged-disk\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1682' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:20:52 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;3995,Microsoft.Compute/LowCostGet30Min;31980 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:20:52 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''{"location": "westus", "tags": {}, "properties": {"sourceVirtualMachine": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk"}, + "hyperVGeneration": "V1"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + Content-Length: + - '316' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk\"\ + \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ + \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ + \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage6a7f420fe99d8c.blob.core.windows.net/vhds/osdisk_6a7f420fe9.vhd\"\ + ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ + : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ + \ \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ + ,\r\n \"name\": \"img-from-unmanaged\"\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/190be2d5-1825-43bf-9939-0e3e958dc8ba?api-version=2019-03-01 + cache-control: + - no-cache + content-length: + - '1035' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:20:58 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-resource: + - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;198 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/190be2d5-1825-43bf-9939-0e3e958dc8ba?api-version=2019-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-04-30T01:20:53.6245223+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:21:03.8122989+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"190be2d5-1825-43bf-9939-0e3e958dc8ba\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:21: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/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29915 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk\"\ + \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ + \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ + \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage6a7f420fe99d8c.blob.core.windows.net/vhds/osdisk_6a7f420fe9.vhd\"\ + ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ + : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ + \ \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ + ,\r\n \"name\": \"img-from-unmanaged\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1036' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:21: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/GetImages3Min;353,Microsoft.Compute/GetImages30Min;1783 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:21:29 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.21.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.5\",\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\":\"9\",\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-RAW\",\n \"version\":\"latest\"\n \ + \ },\n \"SLES\":{\n \"publisher\":\"SUSE\",\n \ + \ \"offer\":\"SLES\",\n \"sku\":\"15\",\n \"\ + version\":\"latest\"\n },\n \"UbuntuLTS\":{\n \ + \ \"publisher\":\"Canonical\",\n \"offer\":\"UbuntuServer\",\n\ + \ \"sku\":\"18.04-LTS\",\n \"version\":\"latest\"\n\ + \ }\n },\n\n \"Windows\":{\n \"Win2019Datacenter\"\ + :{\n \"publisher\":\"MicrosoftWindowsServer\",\n \"\ + offer\":\"WindowsServer\",\n \"sku\":\"2019-Datacenter\",\n \ + \ \"version\":\"latest\"\n },\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: + - '2433' + content-security-policy: + - default-src 'none'; style-src 'unsafe-inline'; sandbox + content-type: + - text/plain; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:21:30 GMT + etag: + - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' + expires: + - Tue, 30 Apr 2019 01:26:30 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: + - 9121852edfc33dbe5084bc4f8bd0b864858aae45 + x-frame-options: + - deny + x-geo-block-list: + - '' + x-github-request-id: + - 1E86:4FFE:C2391:DCB76:5CC7A31A + x-served-by: + - cache-sjc3634-SJC + x-timer: + - S1556587291.593858,VS0,VE200 + 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: + - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm-unmanaged-diskVNET\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\"\ + ,\r\n \"etag\": \"W/\\\"0af6c320-92c5-4164-9337-502df7773386\\\"\",\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3060738-9a22-4ee9-849f-24510f88bd58\"\ + ,\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\": \"vm-unmanaged-diskSubnet\",\r\ + \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"\ + ,\r\n \"etag\": \"W/\\\"0af6c320-92c5-4164-9337-502df7773386\\\"\ + \",\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_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-unmanaged-diskVMNic/ipConfigurations/ipconfigvm-unmanaged-disk\"\ + \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: + - '2087' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:21:30 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": {"adminPassword": {"type": "securestring", + "metadata": {"description": "Secure adminPassword"}}}, "variables": {}, "resources": + [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vm-managed-diskNSG", + "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": "vm-managed-diskPublicIP", "location": "westus", "tags": {}, "dependsOn": + [], "properties": {"publicIPAllocationMethod": null}}, {"apiVersion": "2015-06-15", + "type": "Microsoft.Network/networkInterfaces", "name": "vm-managed-diskVMNic", + "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG", + "Microsoft.Network/publicIpAddresses/vm-managed-diskPublicIP"], "properties": + {"ipConfigurations": [{"name": "ipconfigvm-managed-disk", "properties": {"privateIPAllocationMethod": + "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"}}}], + "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"}}}, + {"apiVersion": "2019-03-01", "type": "Microsoft.Compute/virtualMachines", "name": + "vm-managed-disk", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"], + "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": + {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"}]}, + "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching": + "ReadWrite", "managedDisk": {"storageAccountType": "standard_lrs"}}, "imageReference": + {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": + "latest"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": "standard_lrs"}, + "createOption": "empty", "diskSizeGB": 1}, {"lun": 1, "managedDisk": {"storageAccountType": + "standard_lrs"}, "createOption": "empty", "diskSizeGB": 1}]}, "osProfile": {"computerName": + "vm-managed-disk", "adminUsername": "sdk-test-admin", "adminPassword": "[parameters(\''adminPassword\'')]"}}}], + "outputs": {}}, "parameters": {"adminPassword": {"value": "testPassword0"}}, "mode": "Incremental"}}''' headers: Accept: @@ -3104,46 +3490,677 @@ interactions: - vm create Connection: - keep-alive - Content-Length: - - '3389' - Content-Type: - - application/json; charset=utf-8 + Content-Length: + - '3389' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","name":"vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","properties":{"templateHash":"3704837841479010663","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:21:34.591884Z","duration":"PT1.2489435S","correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-managed-diskNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-managed-diskPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-managed-diskVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-managed-diskVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-managed-disk"}]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/operationStatuses/08586450195921346837?api-version=2018-05-01 + cache-control: + - no-cache + content-length: + - '2521' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:21:34 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 + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A21%3A41Z%20and%20correlationId%20eq%20%27ae7b0a53-43a9-4224-be3e-74131fa141ec%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:21:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A21%3A52Z%20and%20correlationId%20eq%20%27ae7b0a53-43a9-4224-be3e-74131fa141ec%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:21:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A22%3A03Z%20and%20correlationId%20eq%20%27ae7b0a53-43a9-4224-be3e-74131fa141ec%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"871e7184-d36b-4a97-b77b-31cf19cffc18","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"730d5a6b-daa9-4ce7-aa97-4ec2c586a5bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/871e7184-d36b-4a97-b77b-31cf19cffc18/ticks/636921840965005323","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d070b2f9-6d42-44c8-a01a-ed9d8bea02b3","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8eae7f71-13d3-41ec-a37b-bc18ec3168e2","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b033ada-1cea-4ae0-a4df-8cfe87abd7f6\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:36.5005323Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"6b9959f7-8d5b-40ee-bf3c-f92bca7dc33d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5256f4c0-88a6-4e85-822f-6c9fdf044983","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6b9959f7-8d5b-40ee-bf3c-f92bca7dc33d/ticks/636921840963205321","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1e2c9342-c1ad-4814-88a5-c43ff6325a85","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"48ef1c01-68f0-4fcd-9379-9d807f46b742\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"17d9557d-2d9e-4f60-ad99-de94576fc83f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:36.3205321Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"729492b0-1ca3-4a9c-bdec-780353af155a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/729492b0-1ca3-4a9c-bdec-780353af155a/ticks/636921840962405181","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:36.2405181Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"79b61b17-3363-41b5-975e-4d97e0852d44","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5256f4c0-88a6-4e85-822f-6c9fdf044983","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/79b61b17-3363-41b5-975e-4d97e0852d44/ticks/636921840952955375","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:35.2955375Z","submissionTimestamp":"2019-04-30T01:21:53.0848833Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"4773ede8-3cf0-4031-932a-68a1f1744b09","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"730d5a6b-daa9-4ce7-aa97-4ec2c586a5bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/4773ede8-3cf0-4031-932a-68a1f1744b09/ticks/636921840952755529","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d070b2f9-6d42-44c8-a01a-ed9d8bea02b3","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:35.2755529Z","submissionTimestamp":"2019-04-30T01:21:53.0848833Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"8c192fe7-e2f7-4925-9035-90ee94caa01b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"48627ef4-6ae6-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/events/8c192fe7-e2f7-4925-9035-90ee94caa01b/ticks/636921840947746307","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:34.7746307Z","submissionTimestamp":"2019-04-30T01:21:50.1113517Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"ec8896d6-ddc9-45bc-8ee5-b815861a0fca","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"48627ef4-6ae6-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/events/ec8896d6-ddc9-45bc-8ee5-b815861a0fca/ticks/636921840913995925","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:31.3995925Z","submissionTimestamp":"2019-04-30T01:21:50.1103518Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '33167' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:22:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450195921346837?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: + - Tue, 30 Apr 2019 01:22:04 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 + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A22%3A13Z%20and%20correlationId%20eq%20%27ae7b0a53-43a9-4224-be3e-74131fa141ec%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"71ac33f7-66a1-4d92-a313-469fd016443f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d/events/71ac33f7-66a1-4d92-a313-469fd016443f/ticks/636921841028574492","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"28e6372a-f822-441a-95f7-78d2946f4317","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"4f16b29a-9176-4ade-935f-a3fcc5ab6e0e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.8574492Z","submissionTimestamp":"2019-04-30T01:22:04.1033908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"8ffa23b3-4727-4860-b71a-1217c026588e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/8ffa23b3-4727-4860-b71a-1217c026588e/ticks/636921841028222624","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f3897222-78c2-460b-ba2b-457d1c6486d5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.8222624Z","submissionTimestamp":"2019-04-30T01:22:06.0717958Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFgcefmgXP2Zeav1AluWZqSkAQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"92KqUJoiqEaVWqNdbZMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"2cac3a38-143e-4eb7-a3f7-265ee70f9e9a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371/events/2cac3a38-143e-4eb7-a3f7-265ee70f9e9a/ticks/636921841026279300","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1206f68b-c1b4-4275-b45c-a9a8f548c3a2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"5233e56a-be13-4390-8cbb-3366802d9ba2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.62793Z","submissionTimestamp":"2019-04-30T01:22:06.0789626Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYPih/tU4kutl3dprEwPX2VZlAAA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"-R3j5MDPJ0Gqj1xVIUMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"278aaf05-7349-46f2-b6d3-8ebacaa39e96","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d/events/278aaf05-7349-46f2-b6d3-8ebacaa39e96/ticks/636921841025493688","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"3ca5cfc3-0fc9-4cea-9e2e-96d51ec8bf82","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7944b41c-deda-417c-bbf7-a593758285d5"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.5493688Z","submissionTimestamp":"2019-04-30T01:22:03.0834565Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFgcefmgXP2Zeav1AluWZqSkAQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"92KqUJoiqEaVWqNdbZMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"675a8575-c0e8-42bb-83c0-0a95d513305b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371/events/675a8575-c0e8-42bb-83c0-0a95d513305b/ticks/636921841023580607","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1206f68b-c1b4-4275-b45c-a9a8f548c3a2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.3580607Z","submissionTimestamp":"2019-04-30T01:22:06.0789626Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"3da0b2dc-0905-49f7-90c9-1f553fd32be3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d/events/3da0b2dc-0905-49f7-90c9-1f553fd32be3/ticks/636921841022174306","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"28e6372a-f822-441a-95f7-78d2946f4317","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.2174306Z","submissionTimestamp":"2019-04-30T01:22:04.1033908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYPih/tU4kutl3dprEwPX2VZlAAA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"-R3j5MDPJ0Gqj1xVIUMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"6354fd7a-729e-47da-89dd-bc06917d8147","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d/events/6354fd7a-729e-47da-89dd-bc06917d8147/ticks/636921841021993874","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"3ca5cfc3-0fc9-4cea-9e2e-96d51ec8bf82","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.1993874Z","submissionTimestamp":"2019-04-30T01:22:03.0834565Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"969cee14-edd7-44d1-b541-69b426bfdf76","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89fa79d4-5920-4f47-ba73-85c3f1c3d840","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/969cee14-edd7-44d1-b541-69b426bfdf76/ticks/636921841021813454","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f9d8721b-523b-4cae-a009-12640bc6ad08"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:42.1813454Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"c4e8bd76-dea4-4d3b-8265-3afd95873abd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/c4e8bd76-dea4-4d3b-8265-3afd95873abd/ticks/636921841021063260","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.106326Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"51f2012d-0606-48d3-853c-d2470ee869ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89fa79d4-5920-4f47-ba73-85c3f1c3d840","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/51f2012d-0606-48d3-853c-d2470ee869ef/ticks/636921841010663025","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:41.0663025Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"b93d940e-9890-4c8b-a23f-a18183d629e6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/b93d940e-9890-4c8b-a23f-a18183d629e6/ticks/636921841008995119","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"72ecf686-1e51-4ea8-a83b-08b882eefd24","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:40.8995119Z","submissionTimestamp":"2019-04-30T01:22:03.004843Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"1bfb248c-87d0-40d2-8109-969f47e4df63","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37ca5bdc-4aeb-4452-b633-40f56b17d3cf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/1bfb248c-87d0-40d2-8109-969f47e4df63/ticks/636921841008507022","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e969697e-6c14-4a60-b06b-adbc693f5093","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"0eee4feb-8d5e-4e4a-a570-94528e9af4e1","responseBody":"{\"name\":\"vm-managed-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\",\"etag\":\"W/\\\"8350c1fc-7f0c-487c-820f-ccad9d0be922\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae39a587-ab23-4a5f-9ef2-6755f53d4d85\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\",\"etag\":\"W/\\\"8350c1fc-7f0c-487c-820f-ccad9d0be922\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:40.8507022Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"5e913581-fd03-40c3-9fdb-5cc8bd6397f6","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37ca5bdc-4aeb-4452-b633-40f56b17d3cf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/5e913581-fd03-40c3-9fdb-5cc8bd6397f6/ticks/636921841000397229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e969697e-6c14-4a60-b06b-adbc693f5093","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:40.0397229Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"871e7184-d36b-4a97-b77b-31cf19cffc18","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"730d5a6b-daa9-4ce7-aa97-4ec2c586a5bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/871e7184-d36b-4a97-b77b-31cf19cffc18/ticks/636921840965005323","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d070b2f9-6d42-44c8-a01a-ed9d8bea02b3","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8eae7f71-13d3-41ec-a37b-bc18ec3168e2","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b033ada-1cea-4ae0-a4df-8cfe87abd7f6\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:36.5005323Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"6b9959f7-8d5b-40ee-bf3c-f92bca7dc33d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5256f4c0-88a6-4e85-822f-6c9fdf044983","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6b9959f7-8d5b-40ee-bf3c-f92bca7dc33d/ticks/636921840963205321","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1e2c9342-c1ad-4814-88a5-c43ff6325a85","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"48ef1c01-68f0-4fcd-9379-9d807f46b742\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"17d9557d-2d9e-4f60-ad99-de94576fc83f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:36.3205321Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"729492b0-1ca3-4a9c-bdec-780353af155a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/729492b0-1ca3-4a9c-bdec-780353af155a/ticks/636921840962405181","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:36.2405181Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"79b61b17-3363-41b5-975e-4d97e0852d44","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5256f4c0-88a6-4e85-822f-6c9fdf044983","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/79b61b17-3363-41b5-975e-4d97e0852d44/ticks/636921840952955375","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:35.2955375Z","submissionTimestamp":"2019-04-30T01:21:53.0848833Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"4773ede8-3cf0-4031-932a-68a1f1744b09","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"730d5a6b-daa9-4ce7-aa97-4ec2c586a5bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/4773ede8-3cf0-4031-932a-68a1f1744b09/ticks/636921840952755529","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d070b2f9-6d42-44c8-a01a-ed9d8bea02b3","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:35.2755529Z","submissionTimestamp":"2019-04-30T01:21:53.0848833Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"8c192fe7-e2f7-4925-9035-90ee94caa01b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"48627ef4-6ae6-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/events/8c192fe7-e2f7-4925-9035-90ee94caa01b/ticks/636921840947746307","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:34.7746307Z","submissionTimestamp":"2019-04-30T01:21:50.1113517Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"ec8896d6-ddc9-45bc-8ee5-b815861a0fca","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"48627ef4-6ae6-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/events/ec8896d6-ddc9-45bc-8ee5-b815861a0fca/ticks/636921840913995925","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:31.3995925Z","submissionTimestamp":"2019-04-30T01:21:50.1103518Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '79168' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:22:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A22%3A24Z%20and%20correlationId%20eq%20%27ae7b0a53-43a9-4224-be3e-74131fa141ec%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"71ac33f7-66a1-4d92-a313-469fd016443f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d/events/71ac33f7-66a1-4d92-a313-469fd016443f/ticks/636921841028574492","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"28e6372a-f822-441a-95f7-78d2946f4317","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"4f16b29a-9176-4ade-935f-a3fcc5ab6e0e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.8574492Z","submissionTimestamp":"2019-04-30T01:22:04.1033908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"8ffa23b3-4727-4860-b71a-1217c026588e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/8ffa23b3-4727-4860-b71a-1217c026588e/ticks/636921841028222624","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f3897222-78c2-460b-ba2b-457d1c6486d5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.8222624Z","submissionTimestamp":"2019-04-30T01:22:06.0717958Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFgcefmgXP2Zeav1AluWZqSkAQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"92KqUJoiqEaVWqNdbZMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"2cac3a38-143e-4eb7-a3f7-265ee70f9e9a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371/events/2cac3a38-143e-4eb7-a3f7-265ee70f9e9a/ticks/636921841026279300","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1206f68b-c1b4-4275-b45c-a9a8f548c3a2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"5233e56a-be13-4390-8cbb-3366802d9ba2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.62793Z","submissionTimestamp":"2019-04-30T01:22:06.0789626Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYPih/tU4kutl3dprEwPX2VZlAAA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"-R3j5MDPJ0Gqj1xVIUMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"278aaf05-7349-46f2-b6d3-8ebacaa39e96","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d/events/278aaf05-7349-46f2-b6d3-8ebacaa39e96/ticks/636921841025493688","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"3ca5cfc3-0fc9-4cea-9e2e-96d51ec8bf82","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7944b41c-deda-417c-bbf7-a593758285d5"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.5493688Z","submissionTimestamp":"2019-04-30T01:22:03.0834565Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFgcefmgXP2Zeav1AluWZqSkAQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"92KqUJoiqEaVWqNdbZMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"675a8575-c0e8-42bb-83c0-0a95d513305b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371/events/675a8575-c0e8-42bb-83c0-0a95d513305b/ticks/636921841023580607","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1206f68b-c1b4-4275-b45c-a9a8f548c3a2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.3580607Z","submissionTimestamp":"2019-04-30T01:22:06.0789626Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"3da0b2dc-0905-49f7-90c9-1f553fd32be3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d/events/3da0b2dc-0905-49f7-90c9-1f553fd32be3/ticks/636921841022174306","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"28e6372a-f822-441a-95f7-78d2946f4317","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.2174306Z","submissionTimestamp":"2019-04-30T01:22:04.1033908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYPih/tU4kutl3dprEwPX2VZlAAA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"-R3j5MDPJ0Gqj1xVIUMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"6354fd7a-729e-47da-89dd-bc06917d8147","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d/events/6354fd7a-729e-47da-89dd-bc06917d8147/ticks/636921841021993874","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"3ca5cfc3-0fc9-4cea-9e2e-96d51ec8bf82","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.1993874Z","submissionTimestamp":"2019-04-30T01:22:03.0834565Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"969cee14-edd7-44d1-b541-69b426bfdf76","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89fa79d4-5920-4f47-ba73-85c3f1c3d840","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/969cee14-edd7-44d1-b541-69b426bfdf76/ticks/636921841021813454","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f9d8721b-523b-4cae-a009-12640bc6ad08"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:42.1813454Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"c4e8bd76-dea4-4d3b-8265-3afd95873abd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/c4e8bd76-dea4-4d3b-8265-3afd95873abd/ticks/636921841021063260","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.106326Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"51f2012d-0606-48d3-853c-d2470ee869ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89fa79d4-5920-4f47-ba73-85c3f1c3d840","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/51f2012d-0606-48d3-853c-d2470ee869ef/ticks/636921841010663025","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:41.0663025Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"b93d940e-9890-4c8b-a23f-a18183d629e6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/b93d940e-9890-4c8b-a23f-a18183d629e6/ticks/636921841008995119","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"72ecf686-1e51-4ea8-a83b-08b882eefd24","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:40.8995119Z","submissionTimestamp":"2019-04-30T01:22:03.004843Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"1bfb248c-87d0-40d2-8109-969f47e4df63","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37ca5bdc-4aeb-4452-b633-40f56b17d3cf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/1bfb248c-87d0-40d2-8109-969f47e4df63/ticks/636921841008507022","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e969697e-6c14-4a60-b06b-adbc693f5093","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"0eee4feb-8d5e-4e4a-a570-94528e9af4e1","responseBody":"{\"name\":\"vm-managed-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\",\"etag\":\"W/\\\"8350c1fc-7f0c-487c-820f-ccad9d0be922\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae39a587-ab23-4a5f-9ef2-6755f53d4d85\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\",\"etag\":\"W/\\\"8350c1fc-7f0c-487c-820f-ccad9d0be922\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:40.8507022Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"5e913581-fd03-40c3-9fdb-5cc8bd6397f6","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37ca5bdc-4aeb-4452-b633-40f56b17d3cf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/5e913581-fd03-40c3-9fdb-5cc8bd6397f6/ticks/636921841000397229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e969697e-6c14-4a60-b06b-adbc693f5093","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:40.0397229Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"871e7184-d36b-4a97-b77b-31cf19cffc18","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"730d5a6b-daa9-4ce7-aa97-4ec2c586a5bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/871e7184-d36b-4a97-b77b-31cf19cffc18/ticks/636921840965005323","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d070b2f9-6d42-44c8-a01a-ed9d8bea02b3","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8eae7f71-13d3-41ec-a37b-bc18ec3168e2","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b033ada-1cea-4ae0-a4df-8cfe87abd7f6\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:36.5005323Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"6b9959f7-8d5b-40ee-bf3c-f92bca7dc33d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5256f4c0-88a6-4e85-822f-6c9fdf044983","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6b9959f7-8d5b-40ee-bf3c-f92bca7dc33d/ticks/636921840963205321","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1e2c9342-c1ad-4814-88a5-c43ff6325a85","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"48ef1c01-68f0-4fcd-9379-9d807f46b742\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"17d9557d-2d9e-4f60-ad99-de94576fc83f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:36.3205321Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"729492b0-1ca3-4a9c-bdec-780353af155a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/729492b0-1ca3-4a9c-bdec-780353af155a/ticks/636921840962405181","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:36.2405181Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"79b61b17-3363-41b5-975e-4d97e0852d44","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5256f4c0-88a6-4e85-822f-6c9fdf044983","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/79b61b17-3363-41b5-975e-4d97e0852d44/ticks/636921840952955375","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:35.2955375Z","submissionTimestamp":"2019-04-30T01:21:53.0848833Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"4773ede8-3cf0-4031-932a-68a1f1744b09","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"730d5a6b-daa9-4ce7-aa97-4ec2c586a5bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/4773ede8-3cf0-4031-932a-68a1f1744b09/ticks/636921840952755529","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d070b2f9-6d42-44c8-a01a-ed9d8bea02b3","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:35.2755529Z","submissionTimestamp":"2019-04-30T01:21:53.0848833Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"8c192fe7-e2f7-4925-9035-90ee94caa01b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"48627ef4-6ae6-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/events/8c192fe7-e2f7-4925-9035-90ee94caa01b/ticks/636921840947746307","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:34.7746307Z","submissionTimestamp":"2019-04-30T01:21:50.1113517Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"ec8896d6-ddc9-45bc-8ee5-b815861a0fca","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"48627ef4-6ae6-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/events/ec8896d6-ddc9-45bc-8ee5-b815861a0fca/ticks/636921840913995925","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:31.3995925Z","submissionTimestamp":"2019-04-30T01:21:50.1103518Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '79168' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:22:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A22%3A34Z%20and%20correlationId%20eq%20%27ae7b0a53-43a9-4224-be3e-74131fa141ec%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"9b2fc1c0-8368-47f1-b014-9fbee237f061","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/9b2fc1c0-8368-47f1-b014-9fbee237f061/ticks/636921841141103529","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e0621b0d-00c6-4a4e-ac43-47ad1c25e7b9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:54.1103529Z","submissionTimestamp":"2019-04-30T01:22:16.170194Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"71ac33f7-66a1-4d92-a313-469fd016443f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d/events/71ac33f7-66a1-4d92-a313-469fd016443f/ticks/636921841028574492","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"28e6372a-f822-441a-95f7-78d2946f4317","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"4f16b29a-9176-4ade-935f-a3fcc5ab6e0e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.8574492Z","submissionTimestamp":"2019-04-30T01:22:04.1033908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"8ffa23b3-4727-4860-b71a-1217c026588e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/8ffa23b3-4727-4860-b71a-1217c026588e/ticks/636921841028222624","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f3897222-78c2-460b-ba2b-457d1c6486d5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.8222624Z","submissionTimestamp":"2019-04-30T01:22:06.0717958Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFgcefmgXP2Zeav1AluWZqSkAQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"92KqUJoiqEaVWqNdbZMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"2cac3a38-143e-4eb7-a3f7-265ee70f9e9a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371/events/2cac3a38-143e-4eb7-a3f7-265ee70f9e9a/ticks/636921841026279300","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1206f68b-c1b4-4275-b45c-a9a8f548c3a2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"5233e56a-be13-4390-8cbb-3366802d9ba2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.62793Z","submissionTimestamp":"2019-04-30T01:22:06.0789626Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYPih/tU4kutl3dprEwPX2VZlAAA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"-R3j5MDPJ0Gqj1xVIUMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"278aaf05-7349-46f2-b6d3-8ebacaa39e96","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d/events/278aaf05-7349-46f2-b6d3-8ebacaa39e96/ticks/636921841025493688","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"3ca5cfc3-0fc9-4cea-9e2e-96d51ec8bf82","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7944b41c-deda-417c-bbf7-a593758285d5"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.5493688Z","submissionTimestamp":"2019-04-30T01:22:03.0834565Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFgcefmgXP2Zeav1AluWZqSkAQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"92KqUJoiqEaVWqNdbZMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"675a8575-c0e8-42bb-83c0-0a95d513305b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371/events/675a8575-c0e8-42bb-83c0-0a95d513305b/ticks/636921841023580607","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1206f68b-c1b4-4275-b45c-a9a8f548c3a2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.3580607Z","submissionTimestamp":"2019-04-30T01:22:06.0789626Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"3da0b2dc-0905-49f7-90c9-1f553fd32be3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d/events/3da0b2dc-0905-49f7-90c9-1f553fd32be3/ticks/636921841022174306","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"28e6372a-f822-441a-95f7-78d2946f4317","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.2174306Z","submissionTimestamp":"2019-04-30T01:22:04.1033908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYPih/tU4kutl3dprEwPX2VZlAAA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"-R3j5MDPJ0Gqj1xVIUMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"6354fd7a-729e-47da-89dd-bc06917d8147","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d/events/6354fd7a-729e-47da-89dd-bc06917d8147/ticks/636921841021993874","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"3ca5cfc3-0fc9-4cea-9e2e-96d51ec8bf82","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.1993874Z","submissionTimestamp":"2019-04-30T01:22:03.0834565Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"969cee14-edd7-44d1-b541-69b426bfdf76","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89fa79d4-5920-4f47-ba73-85c3f1c3d840","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/969cee14-edd7-44d1-b541-69b426bfdf76/ticks/636921841021813454","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f9d8721b-523b-4cae-a009-12640bc6ad08"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:42.1813454Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"c4e8bd76-dea4-4d3b-8265-3afd95873abd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/c4e8bd76-dea4-4d3b-8265-3afd95873abd/ticks/636921841021063260","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.106326Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"51f2012d-0606-48d3-853c-d2470ee869ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89fa79d4-5920-4f47-ba73-85c3f1c3d840","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/51f2012d-0606-48d3-853c-d2470ee869ef/ticks/636921841010663025","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:41.0663025Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"b93d940e-9890-4c8b-a23f-a18183d629e6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/b93d940e-9890-4c8b-a23f-a18183d629e6/ticks/636921841008995119","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"72ecf686-1e51-4ea8-a83b-08b882eefd24","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:40.8995119Z","submissionTimestamp":"2019-04-30T01:22:03.004843Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"1bfb248c-87d0-40d2-8109-969f47e4df63","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37ca5bdc-4aeb-4452-b633-40f56b17d3cf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/1bfb248c-87d0-40d2-8109-969f47e4df63/ticks/636921841008507022","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e969697e-6c14-4a60-b06b-adbc693f5093","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"0eee4feb-8d5e-4e4a-a570-94528e9af4e1","responseBody":"{\"name\":\"vm-managed-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\",\"etag\":\"W/\\\"8350c1fc-7f0c-487c-820f-ccad9d0be922\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae39a587-ab23-4a5f-9ef2-6755f53d4d85\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\",\"etag\":\"W/\\\"8350c1fc-7f0c-487c-820f-ccad9d0be922\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:40.8507022Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"5e913581-fd03-40c3-9fdb-5cc8bd6397f6","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37ca5bdc-4aeb-4452-b633-40f56b17d3cf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/5e913581-fd03-40c3-9fdb-5cc8bd6397f6/ticks/636921841000397229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e969697e-6c14-4a60-b06b-adbc693f5093","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:40.0397229Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"871e7184-d36b-4a97-b77b-31cf19cffc18","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"730d5a6b-daa9-4ce7-aa97-4ec2c586a5bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/871e7184-d36b-4a97-b77b-31cf19cffc18/ticks/636921840965005323","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d070b2f9-6d42-44c8-a01a-ed9d8bea02b3","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8eae7f71-13d3-41ec-a37b-bc18ec3168e2","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b033ada-1cea-4ae0-a4df-8cfe87abd7f6\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:36.5005323Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"6b9959f7-8d5b-40ee-bf3c-f92bca7dc33d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5256f4c0-88a6-4e85-822f-6c9fdf044983","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6b9959f7-8d5b-40ee-bf3c-f92bca7dc33d/ticks/636921840963205321","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1e2c9342-c1ad-4814-88a5-c43ff6325a85","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"48ef1c01-68f0-4fcd-9379-9d807f46b742\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"17d9557d-2d9e-4f60-ad99-de94576fc83f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:36.3205321Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"729492b0-1ca3-4a9c-bdec-780353af155a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/729492b0-1ca3-4a9c-bdec-780353af155a/ticks/636921840962405181","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:36.2405181Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"79b61b17-3363-41b5-975e-4d97e0852d44","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5256f4c0-88a6-4e85-822f-6c9fdf044983","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/79b61b17-3363-41b5-975e-4d97e0852d44/ticks/636921840952955375","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:35.2955375Z","submissionTimestamp":"2019-04-30T01:21:53.0848833Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"4773ede8-3cf0-4031-932a-68a1f1744b09","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"730d5a6b-daa9-4ce7-aa97-4ec2c586a5bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/4773ede8-3cf0-4031-932a-68a1f1744b09/ticks/636921840952755529","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d070b2f9-6d42-44c8-a01a-ed9d8bea02b3","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:35.2755529Z","submissionTimestamp":"2019-04-30T01:21:53.0848833Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"8c192fe7-e2f7-4925-9035-90ee94caa01b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"48627ef4-6ae6-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/events/8c192fe7-e2f7-4925-9035-90ee94caa01b/ticks/636921840947746307","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:34.7746307Z","submissionTimestamp":"2019-04-30T01:21:50.1113517Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"ec8896d6-ddc9-45bc-8ee5-b815861a0fca","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"48627ef4-6ae6-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/events/ec8896d6-ddc9-45bc-8ee5-b815861a0fca/ticks/636921840913995925","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:31.3995925Z","submissionTimestamp":"2019-04-30T01:21:50.1103518Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '82782' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:22:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive ParameterSetName: - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450195921346837?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","name":"vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","properties":{"templateHash":"12913833902031768195","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:44:51.4342353Z","duration":"PT1.2876382S","correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-managed-diskNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-managed-diskPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-managed-diskVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-managed-diskVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-managed-disk"}]}}' + string: '{"status":"Running"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/operationStatuses/08586461557953310277?api-version=2018-05-01 cache-control: - no-cache content-length: - - '2523' + - '20' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:51 GMT + - Tue, 30 Apr 2019 01:22:34 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -3160,24 +4177,96 @@ interactions: ParameterSetName: - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A44%3A57Z%20and%20correlationId%20eq%20%27ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A22%3A45Z%20and%20correlationId%20eq%20%27ae7b0a53-43a9-4224-be3e-74131fa141ec%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"9b2fc1c0-8368-47f1-b014-9fbee237f061","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/9b2fc1c0-8368-47f1-b014-9fbee237f061/ticks/636921841141103529","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e0621b0d-00c6-4a4e-ac43-47ad1c25e7b9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:54.1103529Z","submissionTimestamp":"2019-04-30T01:22:16.170194Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"71ac33f7-66a1-4d92-a313-469fd016443f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d/events/71ac33f7-66a1-4d92-a313-469fd016443f/ticks/636921841028574492","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"28e6372a-f822-441a-95f7-78d2946f4317","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"4f16b29a-9176-4ade-935f-a3fcc5ab6e0e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.8574492Z","submissionTimestamp":"2019-04-30T01:22:04.1033908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"8ffa23b3-4727-4860-b71a-1217c026588e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/8ffa23b3-4727-4860-b71a-1217c026588e/ticks/636921841028222624","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f3897222-78c2-460b-ba2b-457d1c6486d5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.8222624Z","submissionTimestamp":"2019-04-30T01:22:06.0717958Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFgcefmgXP2Zeav1AluWZqSkAQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"92KqUJoiqEaVWqNdbZMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"2cac3a38-143e-4eb7-a3f7-265ee70f9e9a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371/events/2cac3a38-143e-4eb7-a3f7-265ee70f9e9a/ticks/636921841026279300","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1206f68b-c1b4-4275-b45c-a9a8f548c3a2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"5233e56a-be13-4390-8cbb-3366802d9ba2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.62793Z","submissionTimestamp":"2019-04-30T01:22:06.0789626Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYPih/tU4kutl3dprEwPX2VZlAAA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"-R3j5MDPJ0Gqj1xVIUMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"278aaf05-7349-46f2-b6d3-8ebacaa39e96","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d/events/278aaf05-7349-46f2-b6d3-8ebacaa39e96/ticks/636921841025493688","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"3ca5cfc3-0fc9-4cea-9e2e-96d51ec8bf82","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7944b41c-deda-417c-bbf7-a593758285d5"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.5493688Z","submissionTimestamp":"2019-04-30T01:22:03.0834565Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFgcefmgXP2Zeav1AluWZqSkAQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"92KqUJoiqEaVWqNdbZMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"675a8575-c0e8-42bb-83c0-0a95d513305b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371/events/675a8575-c0e8-42bb-83c0-0a95d513305b/ticks/636921841023580607","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1206f68b-c1b4-4275-b45c-a9a8f548c3a2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.3580607Z","submissionTimestamp":"2019-04-30T01:22:06.0789626Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"3da0b2dc-0905-49f7-90c9-1f553fd32be3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d/events/3da0b2dc-0905-49f7-90c9-1f553fd32be3/ticks/636921841022174306","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"28e6372a-f822-441a-95f7-78d2946f4317","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.2174306Z","submissionTimestamp":"2019-04-30T01:22:04.1033908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYPih/tU4kutl3dprEwPX2VZlAAA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"-R3j5MDPJ0Gqj1xVIUMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"6354fd7a-729e-47da-89dd-bc06917d8147","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d/events/6354fd7a-729e-47da-89dd-bc06917d8147/ticks/636921841021993874","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"3ca5cfc3-0fc9-4cea-9e2e-96d51ec8bf82","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.1993874Z","submissionTimestamp":"2019-04-30T01:22:03.0834565Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"969cee14-edd7-44d1-b541-69b426bfdf76","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89fa79d4-5920-4f47-ba73-85c3f1c3d840","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/969cee14-edd7-44d1-b541-69b426bfdf76/ticks/636921841021813454","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f9d8721b-523b-4cae-a009-12640bc6ad08"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:42.1813454Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"c4e8bd76-dea4-4d3b-8265-3afd95873abd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/c4e8bd76-dea4-4d3b-8265-3afd95873abd/ticks/636921841021063260","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.106326Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"51f2012d-0606-48d3-853c-d2470ee869ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89fa79d4-5920-4f47-ba73-85c3f1c3d840","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/51f2012d-0606-48d3-853c-d2470ee869ef/ticks/636921841010663025","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:41.0663025Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"b93d940e-9890-4c8b-a23f-a18183d629e6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/b93d940e-9890-4c8b-a23f-a18183d629e6/ticks/636921841008995119","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"72ecf686-1e51-4ea8-a83b-08b882eefd24","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:40.8995119Z","submissionTimestamp":"2019-04-30T01:22:03.004843Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"1bfb248c-87d0-40d2-8109-969f47e4df63","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37ca5bdc-4aeb-4452-b633-40f56b17d3cf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/1bfb248c-87d0-40d2-8109-969f47e4df63/ticks/636921841008507022","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e969697e-6c14-4a60-b06b-adbc693f5093","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"0eee4feb-8d5e-4e4a-a570-94528e9af4e1","responseBody":"{\"name\":\"vm-managed-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\",\"etag\":\"W/\\\"8350c1fc-7f0c-487c-820f-ccad9d0be922\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae39a587-ab23-4a5f-9ef2-6755f53d4d85\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\",\"etag\":\"W/\\\"8350c1fc-7f0c-487c-820f-ccad9d0be922\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:40.8507022Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"5e913581-fd03-40c3-9fdb-5cc8bd6397f6","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37ca5bdc-4aeb-4452-b633-40f56b17d3cf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/5e913581-fd03-40c3-9fdb-5cc8bd6397f6/ticks/636921841000397229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e969697e-6c14-4a60-b06b-adbc693f5093","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:40.0397229Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"871e7184-d36b-4a97-b77b-31cf19cffc18","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"730d5a6b-daa9-4ce7-aa97-4ec2c586a5bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/871e7184-d36b-4a97-b77b-31cf19cffc18/ticks/636921840965005323","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d070b2f9-6d42-44c8-a01a-ed9d8bea02b3","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8eae7f71-13d3-41ec-a37b-bc18ec3168e2","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b033ada-1cea-4ae0-a4df-8cfe87abd7f6\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:36.5005323Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"6b9959f7-8d5b-40ee-bf3c-f92bca7dc33d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5256f4c0-88a6-4e85-822f-6c9fdf044983","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6b9959f7-8d5b-40ee-bf3c-f92bca7dc33d/ticks/636921840963205321","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1e2c9342-c1ad-4814-88a5-c43ff6325a85","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"48ef1c01-68f0-4fcd-9379-9d807f46b742\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"17d9557d-2d9e-4f60-ad99-de94576fc83f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:36.3205321Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"729492b0-1ca3-4a9c-bdec-780353af155a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/729492b0-1ca3-4a9c-bdec-780353af155a/ticks/636921840962405181","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:36.2405181Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"79b61b17-3363-41b5-975e-4d97e0852d44","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5256f4c0-88a6-4e85-822f-6c9fdf044983","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/79b61b17-3363-41b5-975e-4d97e0852d44/ticks/636921840952955375","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:35.2955375Z","submissionTimestamp":"2019-04-30T01:21:53.0848833Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"4773ede8-3cf0-4031-932a-68a1f1744b09","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"730d5a6b-daa9-4ce7-aa97-4ec2c586a5bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/4773ede8-3cf0-4031-932a-68a1f1744b09/ticks/636921840952755529","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d070b2f9-6d42-44c8-a01a-ed9d8bea02b3","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:35.2755529Z","submissionTimestamp":"2019-04-30T01:21:53.0848833Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"8c192fe7-e2f7-4925-9035-90ee94caa01b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"48627ef4-6ae6-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/events/8c192fe7-e2f7-4925-9035-90ee94caa01b/ticks/636921840947746307","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:34.7746307Z","submissionTimestamp":"2019-04-30T01:21:50.1113517Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"ec8896d6-ddc9-45bc-8ee5-b815861a0fca","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"48627ef4-6ae6-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/events/ec8896d6-ddc9-45bc-8ee5-b815861a0fca/ticks/636921840913995925","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:31.3995925Z","submissionTimestamp":"2019-04-30T01:21:50.1103518Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '12' + - '82782' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:58 GMT + - Tue, 30 Apr 2019 01:22:44 GMT expires: - '-1' pragma: @@ -3211,28 +4300,100 @@ interactions: ParameterSetName: - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A45%3A07Z%20and%20correlationId%20eq%20%27ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A22%3A55Z%20and%20correlationId%20eq%20%27ae7b0a53-43a9-4224-be3e-74131fa141ec%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6f453b12-80a0-4abc-86e9-53a05fd772cb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/6f453b12-80a0-4abc-86e9-53a05fd772cb/ticks/636910478886112203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:48.6112203Z","submissionTimestamp":"2019-04-16T21:45:01.089559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"3e085134-868f-4ea2-9676-a4355f7ab6d4","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/3e085134-868f-4ea2-9676-a4355f7ab6d4/ticks/636921841450222744","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f8fc8231-6d9d-4f44-aa30-7818564c0235","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:22:25.0222744Z","submissionTimestamp":"2019-04-30T01:22:44.1225594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"9b2fc1c0-8368-47f1-b014-9fbee237f061","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/9b2fc1c0-8368-47f1-b014-9fbee237f061/ticks/636921841141103529","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e0621b0d-00c6-4a4e-ac43-47ad1c25e7b9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:54.1103529Z","submissionTimestamp":"2019-04-30T01:22:16.170194Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"71ac33f7-66a1-4d92-a313-469fd016443f","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d/events/71ac33f7-66a1-4d92-a313-469fd016443f/ticks/636921841028574492","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"28e6372a-f822-441a-95f7-78d2946f4317","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"4f16b29a-9176-4ade-935f-a3fcc5ab6e0e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.8574492Z","submissionTimestamp":"2019-04-30T01:22:04.1033908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"8ffa23b3-4727-4860-b71a-1217c026588e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/8ffa23b3-4727-4860-b71a-1217c026588e/ticks/636921841028222624","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f3897222-78c2-460b-ba2b-457d1c6486d5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.8222624Z","submissionTimestamp":"2019-04-30T01:22:06.0717958Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFgcefmgXP2Zeav1AluWZqSkAQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"92KqUJoiqEaVWqNdbZMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"2cac3a38-143e-4eb7-a3f7-265ee70f9e9a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371/events/2cac3a38-143e-4eb7-a3f7-265ee70f9e9a/ticks/636921841026279300","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1206f68b-c1b4-4275-b45c-a9a8f548c3a2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"5233e56a-be13-4390-8cbb-3366802d9ba2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.62793Z","submissionTimestamp":"2019-04-30T01:22:06.0789626Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYPih/tU4kutl3dprEwPX2VZlAAA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"-R3j5MDPJ0Gqj1xVIUMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"278aaf05-7349-46f2-b6d3-8ebacaa39e96","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d/events/278aaf05-7349-46f2-b6d3-8ebacaa39e96/ticks/636921841025493688","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"3ca5cfc3-0fc9-4cea-9e2e-96d51ec8bf82","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7944b41c-deda-417c-bbf7-a593758285d5"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:21:42.5493688Z","submissionTimestamp":"2019-04-30T01:22:03.0834565Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFgcefmgXP2Zeav1AluWZqSkAQA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"92KqUJoiqEaVWqNdbZMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"675a8575-c0e8-42bb-83c0-0a95d513305b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371/events/675a8575-c0e8-42bb-83c0-0a95d513305b/ticks/636921841023580607","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1206f68b-c1b4-4275-b45c-a9a8f548c3a2","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.3580607Z","submissionTimestamp":"2019-04-30T01:22:06.0789626Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"3da0b2dc-0905-49f7-90c9-1f553fd32be3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d/events/3da0b2dc-0905-49f7-90c9-1f553fd32be3/ticks/636921841022174306","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"28e6372a-f822-441a-95f7-78d2946f4317","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.2174306Z","submissionTimestamp":"2019-04-30T01:22:04.1033908Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYPih/tU4kutl3dprEwPX2VZlAAA=","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"-R3j5MDPJ0Gqj1xVIUMBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"6354fd7a-729e-47da-89dd-bc06917d8147","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80f25b5d-7080-4caa-adc7-3bf3a05a9b57","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d/events/6354fd7a-729e-47da-89dd-bc06917d8147/ticks/636921841021993874","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"3ca5cfc3-0fc9-4cea-9e2e-96d51ec8bf82","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.1993874Z","submissionTimestamp":"2019-04-30T01:22:03.0834565Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"969cee14-edd7-44d1-b541-69b426bfdf76","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89fa79d4-5920-4f47-ba73-85c3f1c3d840","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/969cee14-edd7-44d1-b541-69b426bfdf76/ticks/636921841021813454","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f9d8721b-523b-4cae-a009-12640bc6ad08"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:42.1813454Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"c4e8bd76-dea4-4d3b-8265-3afd95873abd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/c4e8bd76-dea4-4d3b-8265-3afd95873abd/ticks/636921841021063260","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:42.106326Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"51f2012d-0606-48d3-853c-d2470ee869ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89fa79d4-5920-4f47-ba73-85c3f1c3d840","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/51f2012d-0606-48d3-853c-d2470ee869ef/ticks/636921841010663025","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9314238c-61bd-47d8-a4f3-a15b7de7d71d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:41.0663025Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"b93d940e-9890-4c8b-a23f-a18183d629e6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/b93d940e-9890-4c8b-a23f-a18183d629e6/ticks/636921841008995119","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"72ecf686-1e51-4ea8-a83b-08b882eefd24","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:40.8995119Z","submissionTimestamp":"2019-04-30T01:22:03.004843Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"1bfb248c-87d0-40d2-8109-969f47e4df63","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37ca5bdc-4aeb-4452-b633-40f56b17d3cf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/1bfb248c-87d0-40d2-8109-969f47e4df63/ticks/636921841008507022","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e969697e-6c14-4a60-b06b-adbc693f5093","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"0eee4feb-8d5e-4e4a-a570-94528e9af4e1","responseBody":"{\"name\":\"vm-managed-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\",\"etag\":\"W/\\\"8350c1fc-7f0c-487c-820f-ccad9d0be922\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ae39a587-ab23-4a5f-9ef2-6755f53d4d85\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\",\"etag\":\"W/\\\"8350c1fc-7f0c-487c-820f-ccad9d0be922\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:40.8507022Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"5e913581-fd03-40c3-9fdb-5cc8bd6397f6","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37ca5bdc-4aeb-4452-b633-40f56b17d3cf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/5e913581-fd03-40c3-9fdb-5cc8bd6397f6/ticks/636921841000397229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"e969697e-6c14-4a60-b06b-adbc693f5093","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:40.0397229Z","submissionTimestamp":"2019-04-30T01:22:03.0991292Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"871e7184-d36b-4a97-b77b-31cf19cffc18","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"730d5a6b-daa9-4ce7-aa97-4ec2c586a5bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/871e7184-d36b-4a97-b77b-31cf19cffc18/ticks/636921840965005323","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d070b2f9-6d42-44c8-a01a-ed9d8bea02b3","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"8eae7f71-13d3-41ec-a37b-bc18ec3168e2","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"0b033ada-1cea-4ae0-a4df-8cfe87abd7f6\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"38610f71-8dff-4b45-b2c3-06cc293d7345\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:36.5005323Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"6b9959f7-8d5b-40ee-bf3c-f92bca7dc33d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5256f4c0-88a6-4e85-822f-6c9fdf044983","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6b9959f7-8d5b-40ee-bf3c-f92bca7dc33d/ticks/636921840963205321","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"1e2c9342-c1ad-4814-88a5-c43ff6325a85","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"48ef1c01-68f0-4fcd-9379-9d807f46b742\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"17d9557d-2d9e-4f60-ad99-de94576fc83f\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:36.3205321Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"729492b0-1ca3-4a9c-bdec-780353af155a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/729492b0-1ca3-4a9c-bdec-780353af155a/ticks/636921840962405181","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:36.2405181Z","submissionTimestamp":"2019-04-30T01:21:53.0858849Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"79b61b17-3363-41b5-975e-4d97e0852d44","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5256f4c0-88a6-4e85-822f-6c9fdf044983","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/79b61b17-3363-41b5-975e-4d97e0852d44/ticks/636921840952955375","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c67740be-4da0-4aa8-bd6f-738df4432f75","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:35.2955375Z","submissionTimestamp":"2019-04-30T01:21:53.0848833Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"4773ede8-3cf0-4031-932a-68a1f1744b09","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"730d5a6b-daa9-4ce7-aa97-4ec2c586a5bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/4773ede8-3cf0-4031-932a-68a1f1744b09/ticks/636921840952755529","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d070b2f9-6d42-44c8-a01a-ed9d8bea02b3","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:35.2755529Z","submissionTimestamp":"2019-04-30T01:21:53.0848833Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"8c192fe7-e2f7-4925-9035-90ee94caa01b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"48627ef4-6ae6-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/events/8c192fe7-e2f7-4925-9035-90ee94caa01b/ticks/636921840947746307","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:21:34.7746307Z","submissionTimestamp":"2019-04-30T01:21:50.1113517Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","description":"","eventDataId":"ec8896d6-ddc9-45bc-8ee5-b815861a0fca","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"48627ef4-6ae6-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30/events/ec8896d6-ddc9-45bc-8ee5-b815861a0fca/ticks/636921840913995925","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:21:31.3995925Z","submissionTimestamp":"2019-04-30T01:21:50.1103518Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '3709' + - '86397' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:45:09 GMT + - Tue, 30 Apr 2019 01:22:55 GMT expires: - '-1' pragma: @@ -3261,50 +4422,33 @@ interactions: - vm create Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A45%3A18Z%20and%20correlationId%20eq%20%27ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450195921346837?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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6720323a-b7b9-4365-907d-f776eb434fee","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6720323a-b7b9-4365-907d-f776eb434fee/ticks/636910478960231311","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:56.0231311Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3ff66213-a3ed-49d1-8a28-5a60b25b51c3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/3ff66213-a3ed-49d1-8a28-5a60b25b51c3/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6f453b12-80a0-4abc-86e9-53a05fd772cb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/6f453b12-80a0-4abc-86e9-53a05fd772cb/ticks/636910478886112203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:48.6112203Z","submissionTimestamp":"2019-04-16T21:45:01.089559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '11356' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:45:19 GMT + - Tue, 30 Apr 2019 01:23:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff status: @@ -3324,22 +4468,22 @@ interactions: ParameterSetName: - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461557953310277?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"status":"Running"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","name":"vm_deploy_o1SB8pCi0LOIHdUXjZlEjtdwZaZsSz30","properties":{"templateHash":"3704837841479010663","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:22:54.1230454Z","duration":"PT1M20.7801049S","correlationId":"ae7b0a53-43a9-4224-be3e-74131fa141ec","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-managed-diskNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-managed-diskPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-managed-diskVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-managed-diskVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-managed-disk"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '20' + - '3433' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:45:21 GMT + - Tue, 30 Apr 2019 01:23:05 GMT expires: - '-1' pragma: @@ -3364,98 +4508,105 @@ interactions: - vm create Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A45%3A28Z%20and%20correlationId%20eq%20%27ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"e69b990b-ea1d-457a-9c03-e28623ac7b80","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/e69b990b-ea1d-457a-9c03-e28623ac7b80/ticks/636910479057243343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.7243343Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"685eb2b9-a8f3-4058-a8f9-3cfe3265cef6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/685eb2b9-a8f3-4058-a8f9-3cfe3265cef6/ticks/636910479054762256","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"aab6cca8-bccf-4c13-ab2c-94da96a6d661"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4762256Z","submissionTimestamp":"2019-04-16T21:45:25.0953156Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd32ded-969e-491a-8bd8-8bec1b6f5d0e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/6cd32ded-969e-491a-8bd8-8bec1b6f5d0e/ticks/636910479054749708","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"c3108749-b5af-4efe-ac5e-4965252c1e20"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4749708Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5adef83a-5446-4de1-9da7-302070d591d7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/5adef83a-5446-4de1-9da7-302070d591d7/ticks/636910479051461752","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1461752Z","submissionTimestamp":"2019-04-16T21:45:25.0943139Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"c439bd18-d636-4255-9a2c-187176c2c391","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/c439bd18-d636-4255-9a2c-187176c2c391/ticks/636910479051199853","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1199853Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839/ticks/636910479036293432","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.6293432Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"88ea266b-043b-4fcc-b4ee-0b3ea9e663a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/88ea266b-043b-4fcc-b4ee-0b3ea9e663a6/ticks/636910479030129259","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e04a69f3-dded-4c58-92c5-3e61dbd618e7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.0129259Z","submissionTimestamp":"2019-04-16T21:45:22.0853938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"d0693d1f-28ae-41ac-9369-d79ad929337d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/d0693d1f-28ae-41ac-9369-d79ad929337d/ticks/636910479019353581","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"417d9ccc-8725-485a-b19a-e8ebf71ed6c2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.9353581Z","submissionTimestamp":"2019-04-16T21:45:22.1571681Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"fbfbb951-344f-4e0c-bfdb-a01bee651c2b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/fbfbb951-344f-4e0c-bfdb-a01bee651c2b/ticks/636910479012185083","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.2185083Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"00bac153-4097-4eaa-89af-a521968c1932","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/00bac153-4097-4eaa-89af-a521968c1932/ticks/636910478962384723","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8a0046df-e4f5-4837-afcf-da7db2f0f240","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"9c02effe-177a-4cc2-8065-1e1a304287e6\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"357beb74-4e1c-4308-a39e-fcf42cb82160\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:56.2384723Z","submissionTimestamp":"2019-04-16T21:45:19.0903208Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6720323a-b7b9-4365-907d-f776eb434fee","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6720323a-b7b9-4365-907d-f776eb434fee/ticks/636910478960231311","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:56.0231311Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5169dc49-6b96-498f-8a81-56a8154f07b3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/5169dc49-6b96-498f-8a81-56a8154f07b3/ticks/636910478957931541","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"177f7cca-964b-455a-be09-ac795b21f11a","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3ffd029-56a4-46e2-9396-22d2a9ee2f39\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:55.7931541Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3ff66213-a3ed-49d1-8a28-5a60b25b51c3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/3ff66213-a3ed-49d1-8a28-5a60b25b51c3/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3195cb20-308c-4a93-9045-c271ca11ddec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/3195cb20-308c-4a93-9045-c271ca11ddec/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"77226775-e145-4641-a1d9-6aec5e9286eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/77226775-e145-4641-a1d9-6aec5e9286eb/ticks/636910478917812203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:51.7812203Z","submissionTimestamp":"2019-04-16T21:45:11.1134354Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6f453b12-80a0-4abc-86e9-53a05fd772cb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/6f453b12-80a0-4abc-86e9-53a05fd772cb/ticks/636910478886112203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:48.6112203Z","submissionTimestamp":"2019-04-16T21:45:01.089559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk?$expand=instanceView&api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"vmId\": \"f0b98bd0-644d-47e2-a6ba-fb8dd6894c00\"\ + ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ + \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ + \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ + ,\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n\ + \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ + \ \"name\": \"vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ + ,\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_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ + \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ + ,\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_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ + \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ + : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ + name\": \"vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\",\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_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\"\ + \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ + : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ + \ \"computerName\": \"vm-managed-disk\",\r\n \"adminUsername\": \"sdk-test-admin\"\ + ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ + : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\"\ + : [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ + : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\"\ + }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ + : {\r\n \"computerName\": \"vm-managed-disk\",\r\n \"osName\": \"\ + ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \ + \ \"vmAgentVersion\": \"2.2.40\",\r\n \"statuses\": [\r\n \ + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ + ,\r\n \"message\": \"Guest Agent is running\",\r\n \"\ + time\": \"2019-04-30T01:23:03+00:00\"\r\n }\r\n ],\r\n \ + \ \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n \ + \ {\r\n \"name\": \"vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ + ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ + : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ + \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ + \ \"time\": \"2019-04-30T01:21:43.7667288+00:00\"\r\n }\r\ + \n ]\r\n },\r\n {\r\n \"name\": \"vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ + ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ + : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ + \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ + \ \"time\": \"2019-04-30T01:21:43.7667288+00:00\"\r\n }\r\ + \n ]\r\n },\r\n {\r\n \"name\": \"vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\"\ + ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ + : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ + \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ + \ \"time\": \"2019-04-30T01:21:43.7667288+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\": \"2019-04-30T01:22:50.8002151+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_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk\"\ + ,\r\n \"name\": \"vm-managed-disk\"\r\n}" headers: cache-control: - no-cache content-length: - - '63768' + - '5143' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:45:29 GMT + - Tue, 30 Apr 2019 01:23:05 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31977 status: code: 200 message: OK @@ -3470,113 +4621,65 @@ interactions: - vm create Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A45%3A39Z%20and%20correlationId%20eq%20%27ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic?api-version=2018-01-01 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5eaa740c-f160-40aa-9b6a-5e08450f0448","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/5eaa740c-f160-40aa-9b6a-5e08450f0448/ticks/636910479188276737","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"6fa32dff-3e6b-47a8-a89c-856a90c7d156","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:18.8276737Z","submissionTimestamp":"2019-04-16T21:45:33.082404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"308197bb-7069-4a73-bfbd-52ae19172639","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/308197bb-7069-4a73-bfbd-52ae19172639/ticks/636910479059343406","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7423278-d1de-4a4e-8056-b18a6075af8f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:05.9343406Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"e69b990b-ea1d-457a-9c03-e28623ac7b80","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/e69b990b-ea1d-457a-9c03-e28623ac7b80/ticks/636910479057243343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.7243343Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"685eb2b9-a8f3-4058-a8f9-3cfe3265cef6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/685eb2b9-a8f3-4058-a8f9-3cfe3265cef6/ticks/636910479054762256","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"aab6cca8-bccf-4c13-ab2c-94da96a6d661"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4762256Z","submissionTimestamp":"2019-04-16T21:45:25.0953156Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd32ded-969e-491a-8bd8-8bec1b6f5d0e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/6cd32ded-969e-491a-8bd8-8bec1b6f5d0e/ticks/636910479054749708","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"c3108749-b5af-4efe-ac5e-4965252c1e20"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4749708Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"09cc839c-2332-41f7-9e63-53501c593564","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/09cc839c-2332-41f7-9e63-53501c593564/ticks/636910479052943894","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b56e2fd5-232c-4719-a98e-9d0eff3a1eb2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.2943894Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5adef83a-5446-4de1-9da7-302070d591d7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/5adef83a-5446-4de1-9da7-302070d591d7/ticks/636910479051461752","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1461752Z","submissionTimestamp":"2019-04-16T21:45:25.0943139Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"c439bd18-d636-4255-9a2c-187176c2c391","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/c439bd18-d636-4255-9a2c-187176c2c391/ticks/636910479051199853","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1199853Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd204f0-3f81-420b-a759-2441ef3ea58c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/6cd204f0-3f81-420b-a759-2441ef3ea58c/ticks/636910479050643841","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.0643841Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839/ticks/636910479036293432","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.6293432Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"88ea266b-043b-4fcc-b4ee-0b3ea9e663a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/88ea266b-043b-4fcc-b4ee-0b3ea9e663a6/ticks/636910479030129259","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e04a69f3-dded-4c58-92c5-3e61dbd618e7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.0129259Z","submissionTimestamp":"2019-04-16T21:45:22.0853938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"8981fb9d-b96a-46ec-880f-b0b3d59218eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/8981fb9d-b96a-46ec-880f-b0b3d59218eb/ticks/636910479028093162","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"04d50311-d0e9-4c68-b8ca-7c16eb0e76b1","responseBody":"{\"name\":\"vm-managed-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d67bb411-192c-4dfa-aa83-d3a936ea39c7\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:02.8093162Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"d0693d1f-28ae-41ac-9369-d79ad929337d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/d0693d1f-28ae-41ac-9369-d79ad929337d/ticks/636910479019353581","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"417d9ccc-8725-485a-b19a-e8ebf71ed6c2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.9353581Z","submissionTimestamp":"2019-04-16T21:45:22.1571681Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"fbfbb951-344f-4e0c-bfdb-a01bee651c2b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/fbfbb951-344f-4e0c-bfdb-a01bee651c2b/ticks/636910479012185083","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.2185083Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"00bac153-4097-4eaa-89af-a521968c1932","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/00bac153-4097-4eaa-89af-a521968c1932/ticks/636910478962384723","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8a0046df-e4f5-4837-afcf-da7db2f0f240","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"9c02effe-177a-4cc2-8065-1e1a304287e6\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"357beb74-4e1c-4308-a39e-fcf42cb82160\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:56.2384723Z","submissionTimestamp":"2019-04-16T21:45:19.0903208Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6720323a-b7b9-4365-907d-f776eb434fee","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6720323a-b7b9-4365-907d-f776eb434fee/ticks/636910478960231311","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:56.0231311Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5169dc49-6b96-498f-8a81-56a8154f07b3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/5169dc49-6b96-498f-8a81-56a8154f07b3/ticks/636910478957931541","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"177f7cca-964b-455a-be09-ac795b21f11a","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3ffd029-56a4-46e2-9396-22d2a9ee2f39\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:55.7931541Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3ff66213-a3ed-49d1-8a28-5a60b25b51c3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/3ff66213-a3ed-49d1-8a28-5a60b25b51c3/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3195cb20-308c-4a93-9045-c271ca11ddec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/3195cb20-308c-4a93-9045-c271ca11ddec/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"77226775-e145-4641-a1d9-6aec5e9286eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/77226775-e145-4641-a1d9-6aec5e9286eb/ticks/636910478917812203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:51.7812203Z","submissionTimestamp":"2019-04-16T21:45:11.1134354Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6f453b12-80a0-4abc-86e9-53a05fd772cb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/6f453b12-80a0-4abc-86e9-53a05fd772cb/ticks/636910478886112203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:48.6112203Z","submissionTimestamp":"2019-04-16T21:45:01.089559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: "{\r\n \"name\": \"vm-managed-diskVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\"\ + ,\r\n \"etag\": \"W/\\\"3931e772-a9f2-4c7b-8575-842f737f5d2f\\\"\",\r\n \ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ae39a587-ab23-4a5f-9ef2-6755f53d4d85\"\ + ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm-managed-disk\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\"\ + ,\r\n \"etag\": \"W/\\\"3931e772-a9f2-4c7b-8575-842f737f5d2f\\\"\"\ + ,\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_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"\ + \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"\ + \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\": \"hadqnizctluu3be5eriq5cf3la.dx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-59-9E-07\",\r\n \"enableAcceleratedNetworking\"\ + : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"\ + \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk\"\ + \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\ + \n}" headers: cache-control: - no-cache content-length: - - '82755' + - '2692' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:45:40 GMT + - Tue, 30 Apr 2019 01:23:06 GMT + etag: + - W/"3931e772-a9f2-4c7b-8575-842f737f5d2f" expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff status: @@ -3593,118 +4696,114 @@ interactions: - vm create Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A45%3A49Z%20and%20correlationId%20eq%20%27ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP?api-version=2018-01-01 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5eaa740c-f160-40aa-9b6a-5e08450f0448","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/5eaa740c-f160-40aa-9b6a-5e08450f0448/ticks/636910479188276737","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"6fa32dff-3e6b-47a8-a89c-856a90c7d156","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:18.8276737Z","submissionTimestamp":"2019-04-16T21:45:33.082404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"308197bb-7069-4a73-bfbd-52ae19172639","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/308197bb-7069-4a73-bfbd-52ae19172639/ticks/636910479059343406","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7423278-d1de-4a4e-8056-b18a6075af8f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:05.9343406Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"e69b990b-ea1d-457a-9c03-e28623ac7b80","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/e69b990b-ea1d-457a-9c03-e28623ac7b80/ticks/636910479057243343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.7243343Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"685eb2b9-a8f3-4058-a8f9-3cfe3265cef6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/685eb2b9-a8f3-4058-a8f9-3cfe3265cef6/ticks/636910479054762256","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"aab6cca8-bccf-4c13-ab2c-94da96a6d661"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4762256Z","submissionTimestamp":"2019-04-16T21:45:25.0953156Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd32ded-969e-491a-8bd8-8bec1b6f5d0e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/6cd32ded-969e-491a-8bd8-8bec1b6f5d0e/ticks/636910479054749708","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"c3108749-b5af-4efe-ac5e-4965252c1e20"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4749708Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"09cc839c-2332-41f7-9e63-53501c593564","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/09cc839c-2332-41f7-9e63-53501c593564/ticks/636910479052943894","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b56e2fd5-232c-4719-a98e-9d0eff3a1eb2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.2943894Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5adef83a-5446-4de1-9da7-302070d591d7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/5adef83a-5446-4de1-9da7-302070d591d7/ticks/636910479051461752","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1461752Z","submissionTimestamp":"2019-04-16T21:45:25.0943139Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"c439bd18-d636-4255-9a2c-187176c2c391","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/c439bd18-d636-4255-9a2c-187176c2c391/ticks/636910479051199853","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1199853Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd204f0-3f81-420b-a759-2441ef3ea58c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/6cd204f0-3f81-420b-a759-2441ef3ea58c/ticks/636910479050643841","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.0643841Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839/ticks/636910479036293432","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.6293432Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"88ea266b-043b-4fcc-b4ee-0b3ea9e663a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/88ea266b-043b-4fcc-b4ee-0b3ea9e663a6/ticks/636910479030129259","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e04a69f3-dded-4c58-92c5-3e61dbd618e7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.0129259Z","submissionTimestamp":"2019-04-16T21:45:22.0853938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"8981fb9d-b96a-46ec-880f-b0b3d59218eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/8981fb9d-b96a-46ec-880f-b0b3d59218eb/ticks/636910479028093162","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"04d50311-d0e9-4c68-b8ca-7c16eb0e76b1","responseBody":"{\"name\":\"vm-managed-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d67bb411-192c-4dfa-aa83-d3a936ea39c7\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:02.8093162Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"d0693d1f-28ae-41ac-9369-d79ad929337d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/d0693d1f-28ae-41ac-9369-d79ad929337d/ticks/636910479019353581","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"417d9ccc-8725-485a-b19a-e8ebf71ed6c2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.9353581Z","submissionTimestamp":"2019-04-16T21:45:22.1571681Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"fbfbb951-344f-4e0c-bfdb-a01bee651c2b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/fbfbb951-344f-4e0c-bfdb-a01bee651c2b/ticks/636910479012185083","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.2185083Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"00bac153-4097-4eaa-89af-a521968c1932","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/00bac153-4097-4eaa-89af-a521968c1932/ticks/636910478962384723","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8a0046df-e4f5-4837-afcf-da7db2f0f240","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"9c02effe-177a-4cc2-8065-1e1a304287e6\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"357beb74-4e1c-4308-a39e-fcf42cb82160\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:56.2384723Z","submissionTimestamp":"2019-04-16T21:45:19.0903208Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6720323a-b7b9-4365-907d-f776eb434fee","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6720323a-b7b9-4365-907d-f776eb434fee/ticks/636910478960231311","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:56.0231311Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5169dc49-6b96-498f-8a81-56a8154f07b3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/5169dc49-6b96-498f-8a81-56a8154f07b3/ticks/636910478957931541","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"177f7cca-964b-455a-be09-ac795b21f11a","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3ffd029-56a4-46e2-9396-22d2a9ee2f39\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:55.7931541Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3ff66213-a3ed-49d1-8a28-5a60b25b51c3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/3ff66213-a3ed-49d1-8a28-5a60b25b51c3/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3195cb20-308c-4a93-9045-c271ca11ddec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/3195cb20-308c-4a93-9045-c271ca11ddec/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"77226775-e145-4641-a1d9-6aec5e9286eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/77226775-e145-4641-a1d9-6aec5e9286eb/ticks/636910478917812203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:51.7812203Z","submissionTimestamp":"2019-04-16T21:45:11.1134354Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6f453b12-80a0-4abc-86e9-53a05fd772cb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/6f453b12-80a0-4abc-86e9-53a05fd772cb/ticks/636910478886112203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:48.6112203Z","submissionTimestamp":"2019-04-16T21:45:01.089559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: "{\r\n \"name\": \"vm-managed-diskPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"\ + ,\r\n \"etag\": \"W/\\\"59b5aeb8-24c9-49d2-b08a-9c0f68856edf\\\"\",\r\n \ + \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"17d9557d-2d9e-4f60-ad99-de94576fc83f\"\ + ,\r\n \"ipAddress\": \"138.91.241.112\",\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_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\"\ + \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: - - '82755' + - '1071' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:45:50 GMT + - Tue, 30 Apr 2019 01:23:06 GMT + etag: + - W/"59b5aeb8-24c9-49d2-b08a-9c0f68856edf" expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff status: code: 200 message: OK +- request: + body: '{"commandId": "RunShellScript", "script": ["echo ''sudo waagent -deprovision+user + --force'' | at -M now + 1 minutes"], "parameters": []}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm run-command invoke + Connection: + - keep-alive + Content-Length: + - '134' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --command-id --scripts + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/runCommand?api-version=2019-03-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0f4c2e33-2359-4608-96ba-45fd7900f63d?api-version=2019-03-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 30 Apr 2019 01:23:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0f4c2e33-2359-4608-96ba-45fd7900f63d?monitor=true&api-version=2019-03-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/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1194 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted - request: body: null headers: @@ -3713,38 +4812,53 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm run-command invoke Connection: - keep-alive ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n --command-id --scripts User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461557953310277?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0f4c2e33-2359-4608-96ba-45fd7900f63d?api-version=2019-03-01 response: body: - string: '{"status":"Running"}' + string: "{\r\n \"startTime\": \"2019-04-30T01:23:07.8321445+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:23:27.2862648+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"properties\": {\r\n \"output\": {\r\n \"value\": [\r\n {\r\ + \n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"\ + Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"\ + message\": \"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning: commands\ + \ will be executed using /bin/sh\\njob 1 at Tue Apr 30 01:24:00 2019\\n\"\r\ + \n }\r\n ]\r\n}\r\n },\r\n \"name\": \"0f4c2e33-2359-4608-96ba-45fd7900f63d\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '20' + - '530' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:45:51 GMT + - Tue, 30 Apr 2019 01:23:37 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;14989,Microsoft.Compute/GetOperation30Min;29907 status: code: 200 message: OK @@ -3756,118 +4870,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm run-command invoke Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n --command-id --scripts User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A46%3A00Z%20and%20correlationId%20eq%20%27ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0f4c2e33-2359-4608-96ba-45fd7900f63d?monitor=true&api-version=2019-03-01 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5eaa740c-f160-40aa-9b6a-5e08450f0448","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/5eaa740c-f160-40aa-9b6a-5e08450f0448/ticks/636910479188276737","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"6fa32dff-3e6b-47a8-a89c-856a90c7d156","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:18.8276737Z","submissionTimestamp":"2019-04-16T21:45:33.082404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"308197bb-7069-4a73-bfbd-52ae19172639","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/308197bb-7069-4a73-bfbd-52ae19172639/ticks/636910479059343406","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7423278-d1de-4a4e-8056-b18a6075af8f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:05.9343406Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"e69b990b-ea1d-457a-9c03-e28623ac7b80","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/e69b990b-ea1d-457a-9c03-e28623ac7b80/ticks/636910479057243343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.7243343Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"685eb2b9-a8f3-4058-a8f9-3cfe3265cef6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/685eb2b9-a8f3-4058-a8f9-3cfe3265cef6/ticks/636910479054762256","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"aab6cca8-bccf-4c13-ab2c-94da96a6d661"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4762256Z","submissionTimestamp":"2019-04-16T21:45:25.0953156Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd32ded-969e-491a-8bd8-8bec1b6f5d0e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/6cd32ded-969e-491a-8bd8-8bec1b6f5d0e/ticks/636910479054749708","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"c3108749-b5af-4efe-ac5e-4965252c1e20"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4749708Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"09cc839c-2332-41f7-9e63-53501c593564","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/09cc839c-2332-41f7-9e63-53501c593564/ticks/636910479052943894","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b56e2fd5-232c-4719-a98e-9d0eff3a1eb2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.2943894Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5adef83a-5446-4de1-9da7-302070d591d7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/5adef83a-5446-4de1-9da7-302070d591d7/ticks/636910479051461752","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1461752Z","submissionTimestamp":"2019-04-16T21:45:25.0943139Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"c439bd18-d636-4255-9a2c-187176c2c391","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/c439bd18-d636-4255-9a2c-187176c2c391/ticks/636910479051199853","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1199853Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd204f0-3f81-420b-a759-2441ef3ea58c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/6cd204f0-3f81-420b-a759-2441ef3ea58c/ticks/636910479050643841","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.0643841Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839/ticks/636910479036293432","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.6293432Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"88ea266b-043b-4fcc-b4ee-0b3ea9e663a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/88ea266b-043b-4fcc-b4ee-0b3ea9e663a6/ticks/636910479030129259","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e04a69f3-dded-4c58-92c5-3e61dbd618e7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.0129259Z","submissionTimestamp":"2019-04-16T21:45:22.0853938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"8981fb9d-b96a-46ec-880f-b0b3d59218eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/8981fb9d-b96a-46ec-880f-b0b3d59218eb/ticks/636910479028093162","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"04d50311-d0e9-4c68-b8ca-7c16eb0e76b1","responseBody":"{\"name\":\"vm-managed-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d67bb411-192c-4dfa-aa83-d3a936ea39c7\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:02.8093162Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"d0693d1f-28ae-41ac-9369-d79ad929337d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/d0693d1f-28ae-41ac-9369-d79ad929337d/ticks/636910479019353581","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"417d9ccc-8725-485a-b19a-e8ebf71ed6c2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.9353581Z","submissionTimestamp":"2019-04-16T21:45:22.1571681Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"fbfbb951-344f-4e0c-bfdb-a01bee651c2b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/fbfbb951-344f-4e0c-bfdb-a01bee651c2b/ticks/636910479012185083","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.2185083Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"00bac153-4097-4eaa-89af-a521968c1932","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/00bac153-4097-4eaa-89af-a521968c1932/ticks/636910478962384723","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8a0046df-e4f5-4837-afcf-da7db2f0f240","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"9c02effe-177a-4cc2-8065-1e1a304287e6\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"357beb74-4e1c-4308-a39e-fcf42cb82160\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:56.2384723Z","submissionTimestamp":"2019-04-16T21:45:19.0903208Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6720323a-b7b9-4365-907d-f776eb434fee","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6720323a-b7b9-4365-907d-f776eb434fee/ticks/636910478960231311","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:56.0231311Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5169dc49-6b96-498f-8a81-56a8154f07b3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/5169dc49-6b96-498f-8a81-56a8154f07b3/ticks/636910478957931541","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"177f7cca-964b-455a-be09-ac795b21f11a","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3ffd029-56a4-46e2-9396-22d2a9ee2f39\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:55.7931541Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3ff66213-a3ed-49d1-8a28-5a60b25b51c3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/3ff66213-a3ed-49d1-8a28-5a60b25b51c3/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3195cb20-308c-4a93-9045-c271ca11ddec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/3195cb20-308c-4a93-9045-c271ca11ddec/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"77226775-e145-4641-a1d9-6aec5e9286eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/77226775-e145-4641-a1d9-6aec5e9286eb/ticks/636910478917812203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:51.7812203Z","submissionTimestamp":"2019-04-16T21:45:11.1134354Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6f453b12-80a0-4abc-86e9-53a05fd772cb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/6f453b12-80a0-4abc-86e9-53a05fd772cb/ticks/636910478886112203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:48.6112203Z","submissionTimestamp":"2019-04-16T21:45:01.089559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: '{"value":[{"code":"ProvisioningState/succeeded","level":"Info","displayStatus":"Provisioning + succeeded","message":"Enable succeeded: \n[stdout]\n\n[stderr]\nwarning: commands + will be executed using /bin/sh\njob 1 at Tue Apr 30 01:24:00 2019\n"}]}' headers: cache-control: - no-cache content-length: - - '82755' + - '246' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:46:01 GMT + - Tue, 30 Apr 2019 01:23:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29906 status: code: 200 message: OK @@ -3879,121 +4922,52 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm deallocate Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 + Content-Length: + - '0' ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A46%3A10Z%20and%20correlationId%20eq%20%27ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e%27 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/deallocate?api-version=2019-03-01 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5eaa740c-f160-40aa-9b6a-5e08450f0448","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/5eaa740c-f160-40aa-9b6a-5e08450f0448/ticks/636910479188276737","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"6fa32dff-3e6b-47a8-a89c-856a90c7d156","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:18.8276737Z","submissionTimestamp":"2019-04-16T21:45:33.082404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"308197bb-7069-4a73-bfbd-52ae19172639","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/308197bb-7069-4a73-bfbd-52ae19172639/ticks/636910479059343406","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7423278-d1de-4a4e-8056-b18a6075af8f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:05.9343406Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"e69b990b-ea1d-457a-9c03-e28623ac7b80","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/e69b990b-ea1d-457a-9c03-e28623ac7b80/ticks/636910479057243343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.7243343Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"685eb2b9-a8f3-4058-a8f9-3cfe3265cef6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/685eb2b9-a8f3-4058-a8f9-3cfe3265cef6/ticks/636910479054762256","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"aab6cca8-bccf-4c13-ab2c-94da96a6d661"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4762256Z","submissionTimestamp":"2019-04-16T21:45:25.0953156Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd32ded-969e-491a-8bd8-8bec1b6f5d0e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/6cd32ded-969e-491a-8bd8-8bec1b6f5d0e/ticks/636910479054749708","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"c3108749-b5af-4efe-ac5e-4965252c1e20"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4749708Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"09cc839c-2332-41f7-9e63-53501c593564","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/09cc839c-2332-41f7-9e63-53501c593564/ticks/636910479052943894","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b56e2fd5-232c-4719-a98e-9d0eff3a1eb2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.2943894Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5adef83a-5446-4de1-9da7-302070d591d7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/5adef83a-5446-4de1-9da7-302070d591d7/ticks/636910479051461752","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1461752Z","submissionTimestamp":"2019-04-16T21:45:25.0943139Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"c439bd18-d636-4255-9a2c-187176c2c391","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/c439bd18-d636-4255-9a2c-187176c2c391/ticks/636910479051199853","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1199853Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd204f0-3f81-420b-a759-2441ef3ea58c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/6cd204f0-3f81-420b-a759-2441ef3ea58c/ticks/636910479050643841","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.0643841Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839/ticks/636910479036293432","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.6293432Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"88ea266b-043b-4fcc-b4ee-0b3ea9e663a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/88ea266b-043b-4fcc-b4ee-0b3ea9e663a6/ticks/636910479030129259","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e04a69f3-dded-4c58-92c5-3e61dbd618e7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.0129259Z","submissionTimestamp":"2019-04-16T21:45:22.0853938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"8981fb9d-b96a-46ec-880f-b0b3d59218eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/8981fb9d-b96a-46ec-880f-b0b3d59218eb/ticks/636910479028093162","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"04d50311-d0e9-4c68-b8ca-7c16eb0e76b1","responseBody":"{\"name\":\"vm-managed-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d67bb411-192c-4dfa-aa83-d3a936ea39c7\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:02.8093162Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"d0693d1f-28ae-41ac-9369-d79ad929337d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/d0693d1f-28ae-41ac-9369-d79ad929337d/ticks/636910479019353581","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"417d9ccc-8725-485a-b19a-e8ebf71ed6c2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.9353581Z","submissionTimestamp":"2019-04-16T21:45:22.1571681Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"fbfbb951-344f-4e0c-bfdb-a01bee651c2b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/fbfbb951-344f-4e0c-bfdb-a01bee651c2b/ticks/636910479012185083","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.2185083Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"00bac153-4097-4eaa-89af-a521968c1932","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/00bac153-4097-4eaa-89af-a521968c1932/ticks/636910478962384723","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8a0046df-e4f5-4837-afcf-da7db2f0f240","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"9c02effe-177a-4cc2-8065-1e1a304287e6\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"357beb74-4e1c-4308-a39e-fcf42cb82160\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:56.2384723Z","submissionTimestamp":"2019-04-16T21:45:19.0903208Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6720323a-b7b9-4365-907d-f776eb434fee","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6720323a-b7b9-4365-907d-f776eb434fee/ticks/636910478960231311","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:56.0231311Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5169dc49-6b96-498f-8a81-56a8154f07b3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/5169dc49-6b96-498f-8a81-56a8154f07b3/ticks/636910478957931541","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"177f7cca-964b-455a-be09-ac795b21f11a","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3ffd029-56a4-46e2-9396-22d2a9ee2f39\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:55.7931541Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3ff66213-a3ed-49d1-8a28-5a60b25b51c3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/3ff66213-a3ed-49d1-8a28-5a60b25b51c3/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3195cb20-308c-4a93-9045-c271ca11ddec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/3195cb20-308c-4a93-9045-c271ca11ddec/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"77226775-e145-4641-a1d9-6aec5e9286eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/77226775-e145-4641-a1d9-6aec5e9286eb/ticks/636910478917812203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:51.7812203Z","submissionTimestamp":"2019-04-16T21:45:11.1134354Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6f453b12-80a0-4abc-86e9-53a05fd772cb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/6f453b12-80a0-4abc-86e9-53a05fd772cb/ticks/636910478886112203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:48.6112203Z","submissionTimestamp":"2019-04-16T21:45:01.089559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 cache-control: - no-cache content-length: - - '82755' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 16 Apr 2019 21:46:11 GMT + - Tue, 30 Apr 2019 01:24:49 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?monitor=true&api-version=2019-03-01 pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1197 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4002,122 +4976,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm deallocate Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A46%3A20Z%20and%20correlationId%20eq%20%27ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"f9765edb-0d10-4b45-b818-b699bea994cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/f9765edb-0d10-4b45-b818-b699bea994cb/ticks/636910479504964547","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"44d5a1c4-b2ef-4be0-9f6c-4d99c6b03eae","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:50.4964547Z","submissionTimestamp":"2019-04-16T21:46:12.1111589Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5eaa740c-f160-40aa-9b6a-5e08450f0448","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/5eaa740c-f160-40aa-9b6a-5e08450f0448/ticks/636910479188276737","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"6fa32dff-3e6b-47a8-a89c-856a90c7d156","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:18.8276737Z","submissionTimestamp":"2019-04-16T21:45:33.082404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"308197bb-7069-4a73-bfbd-52ae19172639","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/308197bb-7069-4a73-bfbd-52ae19172639/ticks/636910479059343406","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7423278-d1de-4a4e-8056-b18a6075af8f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:05.9343406Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"e69b990b-ea1d-457a-9c03-e28623ac7b80","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/e69b990b-ea1d-457a-9c03-e28623ac7b80/ticks/636910479057243343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.7243343Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"685eb2b9-a8f3-4058-a8f9-3cfe3265cef6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/685eb2b9-a8f3-4058-a8f9-3cfe3265cef6/ticks/636910479054762256","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"aab6cca8-bccf-4c13-ab2c-94da96a6d661"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4762256Z","submissionTimestamp":"2019-04-16T21:45:25.0953156Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd32ded-969e-491a-8bd8-8bec1b6f5d0e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/6cd32ded-969e-491a-8bd8-8bec1b6f5d0e/ticks/636910479054749708","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"c3108749-b5af-4efe-ac5e-4965252c1e20"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4749708Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"09cc839c-2332-41f7-9e63-53501c593564","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/09cc839c-2332-41f7-9e63-53501c593564/ticks/636910479052943894","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b56e2fd5-232c-4719-a98e-9d0eff3a1eb2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.2943894Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5adef83a-5446-4de1-9da7-302070d591d7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/5adef83a-5446-4de1-9da7-302070d591d7/ticks/636910479051461752","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1461752Z","submissionTimestamp":"2019-04-16T21:45:25.0943139Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"c439bd18-d636-4255-9a2c-187176c2c391","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/c439bd18-d636-4255-9a2c-187176c2c391/ticks/636910479051199853","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1199853Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd204f0-3f81-420b-a759-2441ef3ea58c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/6cd204f0-3f81-420b-a759-2441ef3ea58c/ticks/636910479050643841","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.0643841Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839/ticks/636910479036293432","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.6293432Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"88ea266b-043b-4fcc-b4ee-0b3ea9e663a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/88ea266b-043b-4fcc-b4ee-0b3ea9e663a6/ticks/636910479030129259","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e04a69f3-dded-4c58-92c5-3e61dbd618e7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.0129259Z","submissionTimestamp":"2019-04-16T21:45:22.0853938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"8981fb9d-b96a-46ec-880f-b0b3d59218eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/8981fb9d-b96a-46ec-880f-b0b3d59218eb/ticks/636910479028093162","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"04d50311-d0e9-4c68-b8ca-7c16eb0e76b1","responseBody":"{\"name\":\"vm-managed-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d67bb411-192c-4dfa-aa83-d3a936ea39c7\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:02.8093162Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"d0693d1f-28ae-41ac-9369-d79ad929337d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/d0693d1f-28ae-41ac-9369-d79ad929337d/ticks/636910479019353581","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"417d9ccc-8725-485a-b19a-e8ebf71ed6c2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.9353581Z","submissionTimestamp":"2019-04-16T21:45:22.1571681Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"fbfbb951-344f-4e0c-bfdb-a01bee651c2b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/fbfbb951-344f-4e0c-bfdb-a01bee651c2b/ticks/636910479012185083","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.2185083Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"00bac153-4097-4eaa-89af-a521968c1932","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/00bac153-4097-4eaa-89af-a521968c1932/ticks/636910478962384723","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8a0046df-e4f5-4837-afcf-da7db2f0f240","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"9c02effe-177a-4cc2-8065-1e1a304287e6\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"357beb74-4e1c-4308-a39e-fcf42cb82160\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:56.2384723Z","submissionTimestamp":"2019-04-16T21:45:19.0903208Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6720323a-b7b9-4365-907d-f776eb434fee","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6720323a-b7b9-4365-907d-f776eb434fee/ticks/636910478960231311","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:56.0231311Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5169dc49-6b96-498f-8a81-56a8154f07b3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/5169dc49-6b96-498f-8a81-56a8154f07b3/ticks/636910478957931541","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"177f7cca-964b-455a-be09-ac795b21f11a","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3ffd029-56a4-46e2-9396-22d2a9ee2f39\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:55.7931541Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3ff66213-a3ed-49d1-8a28-5a60b25b51c3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/3ff66213-a3ed-49d1-8a28-5a60b25b51c3/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3195cb20-308c-4a93-9045-c271ca11ddec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/3195cb20-308c-4a93-9045-c271ca11ddec/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"77226775-e145-4641-a1d9-6aec5e9286eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/77226775-e145-4641-a1d9-6aec5e9286eb/ticks/636910478917812203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:51.7812203Z","submissionTimestamp":"2019-04-16T21:45:11.1134354Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6f453b12-80a0-4abc-86e9-53a05fd772cb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/6f453b12-80a0-4abc-86e9-53a05fd772cb/ticks/636910478886112203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:48.6112203Z","submissionTimestamp":"2019-04-16T21:45:01.089559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '86368' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:46:22 GMT + - Tue, 30 Apr 2019 01:24:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29904 status: code: 200 message: OK @@ -4129,38 +5028,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461557953310277?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: '{"status":"Running"}' + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '20' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:46:22 GMT + - Tue, 30 Apr 2019 01:25:35 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;14991,Microsoft.Compute/GetOperation30Min;29900 status: code: 200 message: OK @@ -4172,126 +5080,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm deallocate Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A46%3A31Z%20and%20correlationId%20eq%20%27ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"e4a3667b-e310-4c16-b89e-2b6da8e5a4aa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/e4a3667b-e310-4c16-b89e-2b6da8e5a4aa/ticks/636910479664363174","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"c8af39a3-226d-4958-9d16-9a26622de9ea","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:46:06.4363174Z","submissionTimestamp":"2019-04-16T21:46:21.0815358Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"f9765edb-0d10-4b45-b818-b699bea994cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/f9765edb-0d10-4b45-b818-b699bea994cb/ticks/636910479504964547","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"44d5a1c4-b2ef-4be0-9f6c-4d99c6b03eae","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:50.4964547Z","submissionTimestamp":"2019-04-16T21:46:12.1111589Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5eaa740c-f160-40aa-9b6a-5e08450f0448","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/5eaa740c-f160-40aa-9b6a-5e08450f0448/ticks/636910479188276737","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"6fa32dff-3e6b-47a8-a89c-856a90c7d156","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:18.8276737Z","submissionTimestamp":"2019-04-16T21:45:33.082404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"308197bb-7069-4a73-bfbd-52ae19172639","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/308197bb-7069-4a73-bfbd-52ae19172639/ticks/636910479059343406","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7423278-d1de-4a4e-8056-b18a6075af8f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:05.9343406Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"e69b990b-ea1d-457a-9c03-e28623ac7b80","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/e69b990b-ea1d-457a-9c03-e28623ac7b80/ticks/636910479057243343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.7243343Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"685eb2b9-a8f3-4058-a8f9-3cfe3265cef6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/685eb2b9-a8f3-4058-a8f9-3cfe3265cef6/ticks/636910479054762256","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"aab6cca8-bccf-4c13-ab2c-94da96a6d661"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4762256Z","submissionTimestamp":"2019-04-16T21:45:25.0953156Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd32ded-969e-491a-8bd8-8bec1b6f5d0e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/6cd32ded-969e-491a-8bd8-8bec1b6f5d0e/ticks/636910479054749708","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"c3108749-b5af-4efe-ac5e-4965252c1e20"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4749708Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"09cc839c-2332-41f7-9e63-53501c593564","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/09cc839c-2332-41f7-9e63-53501c593564/ticks/636910479052943894","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b56e2fd5-232c-4719-a98e-9d0eff3a1eb2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.2943894Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5adef83a-5446-4de1-9da7-302070d591d7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/5adef83a-5446-4de1-9da7-302070d591d7/ticks/636910479051461752","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1461752Z","submissionTimestamp":"2019-04-16T21:45:25.0943139Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"c439bd18-d636-4255-9a2c-187176c2c391","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/c439bd18-d636-4255-9a2c-187176c2c391/ticks/636910479051199853","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1199853Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd204f0-3f81-420b-a759-2441ef3ea58c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/6cd204f0-3f81-420b-a759-2441ef3ea58c/ticks/636910479050643841","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.0643841Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839/ticks/636910479036293432","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.6293432Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"88ea266b-043b-4fcc-b4ee-0b3ea9e663a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/88ea266b-043b-4fcc-b4ee-0b3ea9e663a6/ticks/636910479030129259","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e04a69f3-dded-4c58-92c5-3e61dbd618e7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.0129259Z","submissionTimestamp":"2019-04-16T21:45:22.0853938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"8981fb9d-b96a-46ec-880f-b0b3d59218eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/8981fb9d-b96a-46ec-880f-b0b3d59218eb/ticks/636910479028093162","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"04d50311-d0e9-4c68-b8ca-7c16eb0e76b1","responseBody":"{\"name\":\"vm-managed-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d67bb411-192c-4dfa-aa83-d3a936ea39c7\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:02.8093162Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"d0693d1f-28ae-41ac-9369-d79ad929337d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/d0693d1f-28ae-41ac-9369-d79ad929337d/ticks/636910479019353581","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"417d9ccc-8725-485a-b19a-e8ebf71ed6c2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.9353581Z","submissionTimestamp":"2019-04-16T21:45:22.1571681Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"fbfbb951-344f-4e0c-bfdb-a01bee651c2b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/fbfbb951-344f-4e0c-bfdb-a01bee651c2b/ticks/636910479012185083","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.2185083Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"00bac153-4097-4eaa-89af-a521968c1932","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/00bac153-4097-4eaa-89af-a521968c1932/ticks/636910478962384723","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8a0046df-e4f5-4837-afcf-da7db2f0f240","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"9c02effe-177a-4cc2-8065-1e1a304287e6\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"357beb74-4e1c-4308-a39e-fcf42cb82160\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:56.2384723Z","submissionTimestamp":"2019-04-16T21:45:19.0903208Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6720323a-b7b9-4365-907d-f776eb434fee","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6720323a-b7b9-4365-907d-f776eb434fee/ticks/636910478960231311","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:56.0231311Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5169dc49-6b96-498f-8a81-56a8154f07b3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/5169dc49-6b96-498f-8a81-56a8154f07b3/ticks/636910478957931541","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"177f7cca-964b-455a-be09-ac795b21f11a","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3ffd029-56a4-46e2-9396-22d2a9ee2f39\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:55.7931541Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3ff66213-a3ed-49d1-8a28-5a60b25b51c3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/3ff66213-a3ed-49d1-8a28-5a60b25b51c3/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3195cb20-308c-4a93-9045-c271ca11ddec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/3195cb20-308c-4a93-9045-c271ca11ddec/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"77226775-e145-4641-a1d9-6aec5e9286eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/77226775-e145-4641-a1d9-6aec5e9286eb/ticks/636910478917812203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:51.7812203Z","submissionTimestamp":"2019-04-16T21:45:11.1134354Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6f453b12-80a0-4abc-86e9-53a05fd772cb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/6f453b12-80a0-4abc-86e9-53a05fd772cb/ticks/636910478886112203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:48.6112203Z","submissionTimestamp":"2019-04-16T21:45:01.089559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '89981' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:46:32 GMT + - Tue, 30 Apr 2019 01:26:05 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29897 status: code: 200 message: OK @@ -4303,126 +5132,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm deallocate Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A46%3A41Z%20and%20correlationId%20eq%20%27ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"e4a3667b-e310-4c16-b89e-2b6da8e5a4aa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/e4a3667b-e310-4c16-b89e-2b6da8e5a4aa/ticks/636910479664363174","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"c8af39a3-226d-4958-9d16-9a26622de9ea","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:46:06.4363174Z","submissionTimestamp":"2019-04-16T21:46:21.0815358Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"f9765edb-0d10-4b45-b818-b699bea994cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/f9765edb-0d10-4b45-b818-b699bea994cb/ticks/636910479504964547","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"44d5a1c4-b2ef-4be0-9f6c-4d99c6b03eae","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:50.4964547Z","submissionTimestamp":"2019-04-16T21:46:12.1111589Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5eaa740c-f160-40aa-9b6a-5e08450f0448","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/5eaa740c-f160-40aa-9b6a-5e08450f0448/ticks/636910479188276737","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"6fa32dff-3e6b-47a8-a89c-856a90c7d156","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:18.8276737Z","submissionTimestamp":"2019-04-16T21:45:33.082404Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"308197bb-7069-4a73-bfbd-52ae19172639","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/308197bb-7069-4a73-bfbd-52ae19172639/ticks/636910479059343406","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7423278-d1de-4a4e-8056-b18a6075af8f"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:05.9343406Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"e69b990b-ea1d-457a-9c03-e28623ac7b80","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/e69b990b-ea1d-457a-9c03-e28623ac7b80/ticks/636910479057243343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.7243343Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"685eb2b9-a8f3-4058-a8f9-3cfe3265cef6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/685eb2b9-a8f3-4058-a8f9-3cfe3265cef6/ticks/636910479054762256","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"aab6cca8-bccf-4c13-ab2c-94da96a6d661"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4762256Z","submissionTimestamp":"2019-04-16T21:45:25.0953156Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd32ded-969e-491a-8bd8-8bec1b6f5d0e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/6cd32ded-969e-491a-8bd8-8bec1b6f5d0e/ticks/636910479054749708","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"c3108749-b5af-4efe-ac5e-4965252c1e20"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.4749708Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"09cc839c-2332-41f7-9e63-53501c593564","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/09cc839c-2332-41f7-9e63-53501c593564/ticks/636910479052943894","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b56e2fd5-232c-4719-a98e-9d0eff3a1eb2"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:45:05.2943894Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5adef83a-5446-4de1-9da7-302070d591d7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6/events/5adef83a-5446-4de1-9da7-302070d591d7/ticks/636910479051461752","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"258ec1e3-001c-4221-b90e-ac505e9460f5","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1461752Z","submissionTimestamp":"2019-04-16T21:45:25.0943139Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"c439bd18-d636-4255-9a2c-187176c2c391","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe/events/c439bd18-d636-4255-9a2c-187176c2c391/ticks/636910479051199853","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"03412c0f-9236-4d75-be59-bc2015658ae1","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.1199853Z","submissionTimestamp":"2019-04-16T21:45:22.0985587Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6cd204f0-3f81-420b-a759-2441ef3ea58c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"816e7ed5-c72d-4c77-b552-22db3e160c3b","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1/events/6cd204f0-3f81-420b-a759-2441ef3ea58c/ticks/636910479050643841","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"4025028e-0098-4d04-9ea1-394e95e26e79","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:05.0643841Z","submissionTimestamp":"2019-04-16T21:45:27.0977435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b2a6393f-6739-416d-a6cf-3e511140db07","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/events/dda3c3a8-0ef2-4f7b-81b0-3b60ddd2a839/ticks/636910479036293432","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"951e49e4-5632-4677-a734-6a6d96c741a5","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.6293432Z","submissionTimestamp":"2019-04-16T21:45:29.0889556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"88ea266b-043b-4fcc-b4ee-0b3ea9e663a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/88ea266b-043b-4fcc-b4ee-0b3ea9e663a6/ticks/636910479030129259","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e04a69f3-dded-4c58-92c5-3e61dbd618e7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:03.0129259Z","submissionTimestamp":"2019-04-16T21:45:22.0853938Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"8981fb9d-b96a-46ec-880f-b0b3d59218eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/8981fb9d-b96a-46ec-880f-b0b3d59218eb/ticks/636910479028093162","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"04d50311-d0e9-4c68-b8ca-7c16eb0e76b1","responseBody":"{\"name\":\"vm-managed-diskVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d67bb411-192c-4dfa-aa83-d3a936ea39c7\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\",\"etag\":\"W/\\\"c11a128f-a21c-4336-a9fa-2134e53fe3e5\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.5\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:45:02.8093162Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"d0693d1f-28ae-41ac-9369-d79ad929337d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/d0693d1f-28ae-41ac-9369-d79ad929337d/ticks/636910479019353581","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"417d9ccc-8725-485a-b19a-e8ebf71ed6c2","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.9353581Z","submissionTimestamp":"2019-04-16T21:45:22.1571681Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"fbfbb951-344f-4e0c-bfdb-a01bee651c2b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c9a92f5f-2ba1-4682-9514-7c3aeb229c34","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/events/fbfbb951-344f-4e0c-bfdb-a01bee651c2b/ticks/636910479012185083","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4139a500-4ab1-470c-8924-d325e65e17b4","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-managed-disk\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:45:01.2185083Z","submissionTimestamp":"2019-04-16T21:45:29.0879545Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"00bac153-4097-4eaa-89af-a521968c1932","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/00bac153-4097-4eaa-89af-a521968c1932/ticks/636910478962384723","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"8a0046df-e4f5-4837-afcf-da7db2f0f240","responseBody":"{\"name\":\"vm-managed-diskPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\",\"etag\":\"W/\\\"9c02effe-177a-4cc2-8065-1e1a304287e6\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"357beb74-4e1c-4308-a39e-fcf42cb82160\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:56.2384723Z","submissionTimestamp":"2019-04-16T21:45:19.0903208Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6720323a-b7b9-4365-907d-f776eb434fee","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/6720323a-b7b9-4365-907d-f776eb434fee/ticks/636910478960231311","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:56.0231311Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"5169dc49-6b96-498f-8a81-56a8154f07b3","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/5169dc49-6b96-498f-8a81-56a8154f07b3/ticks/636910478957931541","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"177f7cca-964b-455a-be09-ac795b21f11a","responseBody":"{\"name\":\"vm-managed-diskNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f3ffd029-56a4-46e2-9396-22d2a9ee2f39\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"2c9bd817-7465-4762-8128-09b607a3fa51\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:55.7931541Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3ff66213-a3ed-49d1-8a28-5a60b25b51c3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"291a69de-6dd4-43da-b875-5fc5946a8f1d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG/events/3ff66213-a3ed-49d1-8a28-5a60b25b51c3/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29528b27-ec86-4732-ba0c-1de84d887a54","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"3195cb20-308c-4a93-9045-c271ca11ddec","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"89cbc6f3-fb6c-494a-87e8-6679b96f6164","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP/events/3195cb20-308c-4a93-9045-c271ca11ddec/ticks/636910478932423878","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"c043cb9d-4f6d-4d58-a541-62e09be4a518","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:53.2423878Z","submissionTimestamp":"2019-04-16T21:45:19.0893206Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"77226775-e145-4641-a1d9-6aec5e9286eb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/77226775-e145-4641-a1d9-6aec5e9286eb/ticks/636910478917812203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:44:51.7812203Z","submissionTimestamp":"2019-04-16T21:45:11.1134354Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","description":"","eventDataId":"6f453b12-80a0-4abc-86e9-53a05fd772cb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"da508212-6090-11e9-8286-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr/events/6f453b12-80a0-4abc-86e9-53a05fd772cb/ticks/636910478886112203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:44:48.6112203Z","submissionTimestamp":"2019-04-16T21:45:01.089559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '89981' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:46:42 GMT + - Tue, 30 Apr 2019 01:26:36 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29894 status: code: 200 message: OK @@ -4434,38 +5184,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461557953310277?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: '{"status":"Succeeded"}' + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '22' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:46:52 GMT + - Tue, 30 Apr 2019 01:27:06 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;14987,Microsoft.Compute/GetOperation30Min;29892 status: code: 200 message: OK @@ -4477,38 +5236,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","name":"vm_deploy_2OKH4uI2OA4EbysGwFjXKoNU0M5WMRLr","properties":{"templateHash":"12913833902031768195","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:46:33.6412689Z","duration":"PT1M43.4946718S","correlationId":"ef5d038e-7dc8-455c-92f5-ad5fbde1cd9e","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-managed-diskNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-managed-diskPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-managed-diskVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-managed-diskVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-managed-disk"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP"}]}}' + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '3434' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:46:52 GMT + - Tue, 30 Apr 2019 01:27:36 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;14985,Microsoft.Compute/GetOperation30Min;29889 status: code: 200 message: OK @@ -4520,91 +5288,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk?$expand=instanceView&api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"3b6411b8-3089-45c6-8bc8-42fd76340ddb\"\ - ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ - \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ - \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ - ,\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n\ - \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"name\": \"vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ - ,\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_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ - \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ - ,\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_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ - \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ - : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\",\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_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\"\ - \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ - : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ - \ \"computerName\": \"vm-managed-disk\",\r\n \"adminUsername\": \"sdk-test-admin\"\ - ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\"\ - : [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ - : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\"\ - }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ - : {\r\n \"computerName\": \"vm-managed-disk\",\r\n \"osName\": \"\ - ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \ - \ \"vmAgentVersion\": \"2.2.38\",\r\n \"statuses\": [\r\n \ - \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ - ,\r\n \"message\": \"Guest Agent is running\",\r\n \"\ - time\": \"2019-04-16T21:46:50+00:00\"\r\n }\r\n ],\r\n \ - \ \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n \ - \ {\r\n \"name\": \"vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ - ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ - : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ - \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-16T21:45:06.1607557+00:00\"\r\n }\r\ - \n ]\r\n },\r\n {\r\n \"name\": \"vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ - ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ - : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ - \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-16T21:45:06.1607557+00:00\"\r\n }\r\ - \n ]\r\n },\r\n {\r\n \"name\": \"vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\"\ - ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ - : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ - \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-16T21:45:06.1607557+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\": \"2019-04-16T21:46:29.1144104+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_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk\"\ - ,\r\n \"name\": \"vm-managed-disk\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '5143' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:46:52 GMT + - Tue, 30 Apr 2019 01:28:07 GMT expires: - '-1' pragma: @@ -4621,7 +5328,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3977,Microsoft.Compute/LowCostGet30Min;31785 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29886 status: code: 200 message: OK @@ -4633,55 +5340,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic?api-version=2018-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: "{\r\n \"name\": \"vm-managed-diskVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic\"\ - ,\r\n \"etag\": \"W/\\\"d5cae8f3-14f2-444e-a477-c77fa5bf86d1\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d67bb411-192c-4dfa-aa83-d3a936ea39c7\"\ - ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm-managed-disk\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\"\ - ,\r\n \"etag\": \"W/\\\"d5cae8f3-14f2-444e-a477-c77fa5bf86d1\\\"\"\ - ,\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_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"\ - \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"\ - \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\": \"d0nsyocv4zbudeif4fuec1hbwa.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-31-2A-BF\",\r\n \"enableAcceleratedNetworking\"\ - : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm-managed-diskNSG\"\ - \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk\"\ - \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\ - \n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '2692' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:46:53 GMT - etag: - - W/"d5cae8f3-14f2-444e-a477-c77fa5bf86d1" + - Tue, 30 Apr 2019 01:28:37 GMT expires: - '-1' pragma: @@ -4697,6 +5379,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29883 status: code: 200 message: OK @@ -4708,42 +5392,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --image --storage-sku --data-disk-sizes-gb --admin-username --admin-password + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP?api-version=2018-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: "{\r\n \"name\": \"vm-managed-diskPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm-managed-diskPublicIP\"\ - ,\r\n \"etag\": \"W/\\\"2615b861-5afc-46fe-81d4-a996cb447598\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"357beb74-4e1c-4308-a39e-fcf42cb82160\"\ - ,\r\n \"ipAddress\": \"104.209.35.105\",\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_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm-managed-diskVMNic/ipConfigurations/ipconfigvm-managed-disk\"\ - \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}" + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '1071' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:46:53 GMT - etag: - - W/"2615b861-5afc-46fe-81d4-a996cb447598" + - Tue, 30 Apr 2019 01:29:07 GMT expires: - '-1' pragma: @@ -4759,50 +5431,45 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29880 status: code: 200 message: OK -- request: - body: '{"commandId": "RunShellScript", "script": ["echo ''sudo waagent -deprovision+user - --force'' | at -M now + 1 minutes"], "parameters": []}' +- request: + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - vm run-command invoke + - vm deallocate Connection: - keep-alive - Content-Length: - - '134' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --command-id --scripts + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/runCommand?api-version=2019-03-01 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: '' + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ + \r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/34c0678b-81bd-4e3f-818f-0bde963d3ca3?api-version=2019-03-01 cache-control: - no-cache content-length: - - '0' + - '134' + content-type: + - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:46:54 GMT + - Tue, 30 Apr 2019 01:29:37 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/34c0678b-81bd-4e3f-818f-0bde963d3ca3?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -4810,15 +5477,17 @@ interactions: - 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/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1168 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29877 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4827,36 +5496,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm run-command invoke + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --command-id --scripts + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/34c0678b-81bd-4e3f-818f-0bde963d3ca3?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:46:54.4895883+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:47:15.786589+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"properties\": {\r\n \"output\": {\r\n \"value\": [\r\n {\r\ - \n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"\ - Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"\ - message\": \"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning: commands\ - \ will be executed using /bin/sh\\njob 1 at Tue Apr 16 21:48:00 2019\\n\"\r\ - \n }\r\n ]\r\n}\r\n },\r\n \"name\": \"34c0678b-81bd-4e3f-818f-0bde963d3ca3\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '529' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:47:24 GMT + - Tue, 30 Apr 2019 01:30:08 GMT expires: - '-1' pragma: @@ -4873,7 +5536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14931,Microsoft.Compute/GetOperation30Min;29566 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29874 status: code: 200 message: OK @@ -4885,30 +5548,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm run-command invoke + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --command-id --scripts + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/34c0678b-81bd-4e3f-818f-0bde963d3ca3?monitor=true&api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: '{"value":[{"code":"ProvisioningState/succeeded","level":"Info","displayStatus":"Provisioning - succeeded","message":"Enable succeeded: \n[stdout]\n\n[stderr]\nwarning: commands - will be executed using /bin/sh\njob 1 at Tue Apr 16 21:48:00 2019\n"}]}' + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '246' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:47:24 GMT + - Tue, 30 Apr 2019 01:30:38 GMT expires: - '-1' pragma: @@ -4925,7 +5588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14930,Microsoft.Compute/GetOperation30Min;29565 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29871 status: code: 200 message: OK @@ -4940,33 +5603,29 @@ interactions: - vm deallocate Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk/deallocate?api-version=2019-03-01 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: '' + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ + \r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a588db0-e67b-480d-88a5-7560578eaf2b?api-version=2019-03-01 cache-control: - no-cache content-length: - - '0' + - '134' + content-type: + - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:48:35 GMT + - Tue, 30 Apr 2019 01:31:08 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a588db0-e67b-480d-88a5-7560578eaf2b?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -4974,15 +5633,17 @@ interactions: - 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/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1175 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29868 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4997,14 +5658,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a588db0-e67b-480d-88a5-7560578eaf2b?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:48:36.3183405+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"5a588db0-e67b-480d-88a5-7560578eaf2b\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\ \r\n}" headers: cache-control: @@ -5014,7 +5675,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:48:46 GMT + - Tue, 30 Apr 2019 01:31:38 GMT expires: - '-1' pragma: @@ -5031,7 +5692,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29546 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29865 status: code: 200 message: OK @@ -5049,15 +5710,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a588db0-e67b-480d-88a5-7560578eaf2b?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0cea5494-6b46-4435-a3cc-3568805a4802?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:48:36.3183405+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:49:07.0685383+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"5a588db0-e67b-480d-88a5-7560578eaf2b\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:24:49.5088719+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:31:42.2456071+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"0cea5494-6b46-4435-a3cc-3568805a4802\"\r\n}" headers: cache-control: - no-cache @@ -5066,7 +5727,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:49:17 GMT + - Tue, 30 Apr 2019 01:32:09 GMT expires: - '-1' pragma: @@ -5083,7 +5744,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29541 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29863 status: code: 200 message: OK @@ -5103,8 +5764,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -5118,7 +5779,7 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2019 21:49:17 GMT + - Tue, 30 Apr 2019 01:32:09 GMT expires: - '-1' pragma: @@ -5131,7 +5792,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1167 + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1193 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -5151,31 +5812,31 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"3b6411b8-3089-45c6-8bc8-42fd76340ddb\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"f0b98bd0-644d-47e2-a6ba-fb8dd6894c00\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ ,\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n\ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"name\": \"vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ + \ \"name\": \"vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ - ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ + ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ \r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \ - \ \"lun\": 0,\r\n \"name\": \"vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ + \ \"lun\": 0,\r\n \"name\": \"vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ - ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ + ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ \r\n },\r\n \"toBeDetached\": false\r\n },\r\n \ - \ {\r\n \"lun\": 1,\r\n \"name\": \"vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\"\ + \ {\r\n \"lun\": 1,\r\n \"name\": \"vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ - ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\"\ + ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\"\ \r\n },\r\n \"toBeDetached\": false\r\n }\r\n \ \ ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-managed-disk\"\ ,\r\n \"adminUsername\": \"sdk-test-admin\",\r\n \"linuxConfiguration\"\ @@ -5195,7 +5856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:49:18 GMT + - Tue, 30 Apr 2019 01:32:10 GMT expires: - '-1' pragma: @@ -5212,7 +5873,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31777 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31980 status: code: 200 message: OK @@ -5230,15 +5891,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:39:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -5247,7 +5908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:49:17 GMT + - Tue, 30 Apr 2019 01:32:10 GMT expires: - '-1' pragma: @@ -5263,7 +5924,8 @@ interactions: message: OK - request: body: 'b''{"location": "westus", "tags": {}, "properties": {"sourceVirtualMachine": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"}}}''' + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk"}, + "hyperVGeneration": "V1"}}''' headers: Accept: - application/json @@ -5274,50 +5936,51 @@ interactions: Connection: - keep-alive Content-Length: - - '288' + - '314' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-managed-disk\"\ \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n\ \ \"lun\": 0,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n\ - \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\"\ + \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"\ - location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ + : \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ ,\r\n \"name\": \"img-from-managed\"\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/667ff585-0879-4093-8c22-07487a364fb8?api-version=2018-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dce56752-78f1-4d9c-85f9-a286ae8c1663?api-version=2019-03-01 cache-control: - no-cache content-length: - - '1999' + - '2030' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:49:19 GMT + - Tue, 30 Apr 2019 01:32:11 GMT expires: - '-1' pragma: @@ -5330,9 +5993,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;190 + - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;197 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -5350,15 +6013,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/667ff585-0879-4093-8c22-07487a364fb8?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dce56752-78f1-4d9c-85f9-a286ae8c1663?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:49:19.0373622+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:49:24.1624113+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"667ff585-0879-4093-8c22-07487a364fb8\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:32:12.0903394+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:32:17.1998577+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"dce56752-78f1-4d9c-85f9-a286ae8c1663\"\r\n}" headers: cache-control: - no-cache @@ -5367,7 +6030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:49:48 GMT + - Tue, 30 Apr 2019 01:32:41 GMT expires: - '-1' pragma: @@ -5384,7 +6047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29535 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29861 status: code: 200 message: OK @@ -5402,10 +6065,10 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ @@ -5413,29 +6076,30 @@ interactions: \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ \ \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n\ \ \"lun\": 0,\r\n \"diskSizeGB\": 1,\r\n \"managedDisk\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n\ \ \"diskSizeGB\": 1,\r\n \"managedDisk\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ ,\r\n \"name\": \"img-from-managed\"\r\n}" headers: cache-control: - no-cache content-length: - - '2083' + - '2114' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:49:49 GMT + - Tue, 30 Apr 2019 01:32:42 GMT expires: - '-1' pragma: @@ -5452,7 +6116,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1760 + - Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1782 status: code: 200 message: OK @@ -5470,15 +6134,15 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:39:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -5487,7 +6151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:49:50 GMT + - Tue, 30 Apr 2019 01:32:43 GMT expires: - '-1' pragma: @@ -5570,13 +6234,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 16 Apr 2019 21:49:51 GMT + - Tue, 30 Apr 2019 01:32:44 GMT etag: - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' expires: - - Tue, 16 Apr 2019 21:54:51 GMT + - Tue, 30 Apr 2019 01:37:44 GMT source-age: - - '232' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -5584,23 +6248,23 @@ interactions: via: - 1.1 varnish x-cache: - - HIT + - MISS x-cache-hits: - - '1' + - '0' x-content-type-options: - nosniff x-fastly-request-id: - - 3be41ea93832d0a2b0a61ab7c03659e75b243b7b + - 1c79f20782ed28132e74316ec7fb64d5df0e809b x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - 18C8:0941:614A2:6F38C:5CB64D16 + - EA26:4FFE:C8F87:E4280:5CC7A5BB x-served-by: - - cache-dfw18631-DFW + - cache-pao17429-PAO x-timer: - - S1555451391.035949,VS0,VE0 + - S1556587964.950328,VS0,VE154 x-xss-protection: - 1; mode=block status: @@ -5620,33 +6284,34 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk\"\ \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage4513b69ecd2a1a.blob.core.windows.net/vhds/osdisk_4513b69ecd.vhd\"\ + \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage6a7f420fe99d8c.blob.core.windows.net/vhds/osdisk_6a7f420fe9.vhd\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ ,\r\n \"name\": \"img-from-unmanaged\"\r\n}" headers: cache-control: - no-cache content-length: - - '1005' + - '1036' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:49:50 GMT + - Tue, 30 Apr 2019 01:32:43 GMT expires: - '-1' pragma: @@ -5663,7 +6328,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;355,Microsoft.Compute/GetImages30Min;1759 + - Microsoft.Compute/GetImages3Min;355,Microsoft.Compute/GetImages30Min;1781 status: code: 200 message: OK @@ -5681,33 +6346,34 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk\"\ \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage4513b69ecd2a1a.blob.core.windows.net/vhds/osdisk_4513b69ecd.vhd\"\ + \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage6a7f420fe99d8c.blob.core.windows.net/vhds/osdisk_6a7f420fe9.vhd\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ ,\r\n \"name\": \"img-from-unmanaged\"\r\n}" headers: cache-control: - no-cache content-length: - - '1005' + - '1036' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:49:51 GMT + - Tue, 30 Apr 2019 01:32:44 GMT expires: - '-1' pragma: @@ -5724,7 +6390,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;354,Microsoft.Compute/GetImages30Min;1758 + - Microsoft.Compute/GetImages3Min;354,Microsoft.Compute/GetImages30Min;1780 status: code: 200 message: OK @@ -5742,8 +6408,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -5752,15 +6418,15 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm-unmanaged-diskVNET\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\"\ - ,\r\n \"etag\": \"W/\\\"87eb7609-9947-4e84-a427-93aab2397924\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"d727236d-799a-46ee-9301-1c1644b43441\\\"\",\r\ \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"382c9b1e-f655-4143-9105-f168416ce1b0\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3060738-9a22-4ee9-849f-24510f88bd58\"\ ,\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\": \"vm-unmanaged-diskSubnet\",\r\ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"\ - ,\r\n \"etag\": \"W/\\\"87eb7609-9947-4e84-a427-93aab2397924\\\"\ + ,\r\n \"etag\": \"W/\\\"d727236d-799a-46ee-9301-1c1644b43441\\\"\ \",\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\"\ @@ -5781,7 +6447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:49:51 GMT + - Tue, 30 Apr 2019 01:32:44 GMT expires: - '-1' pragma: @@ -5845,18 +6511,18 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","name":"vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","properties":{"templateHash":"10865326987795035229","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:49:54.827266Z","duration":"PT1.0551883S","correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"fromimage1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"fromimage1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"fromimage1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","name":"vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","properties":{"templateHash":"6469168048007660348","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:32:47.9175933Z","duration":"PT0.9538429S","correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"fromimage1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"fromimage1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"fromimage1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/operationStatuses/08586461554917055431?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/operationStatuses/08586450189185138747?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -5864,7 +6530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:49:54 GMT + - Tue, 30 Apr 2019 01:32:47 GMT expires: - '-1' pragma: @@ -5874,7 +6540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -5894,12 +6560,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A50%3A01Z%20and%20correlationId%20eq%20%27de00623c-bc73-443a-aeb2-4070f575cb3d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A32%3A55Z%20and%20correlationId%20eq%20%2712404f99-9189-4b02-b3cd-d31f4f66e26d%27 response: body: string: '{"value":[]}' @@ -5911,7 +6577,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:50:01 GMT + - Tue, 30 Apr 2019 01:32:55 GMT expires: - '-1' pragma: @@ -5945,24 +6611,33 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A50%3A11Z%20and%20correlationId%20eq%20%27de00623c-bc73-443a-aeb2-4070f575cb3d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A33%3A05Z%20and%20correlationId%20eq%20%2712404f99-9189-4b02-b3cd-d31f4f66e26d%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"a61a1460-f98a-4bd1-8daa-a9116768afc0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/a61a1460-f98a-4bd1-8daa-a9116768afc0/ticks/636921847682043057","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:48.2043057Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"600f0df5-38e0-4866-8eb3-ef712abf8630","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/600f0df5-38e0-4866-8eb3-ef712abf8630/ticks/636921847652442757","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:45.2442757Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '12' + - '7509' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:50:12 GMT + - Tue, 30 Apr 2019 01:33:05 GMT expires: - '-1' pragma: @@ -5996,39 +6671,44 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A50%3A21Z%20and%20correlationId%20eq%20%27de00623c-bc73-443a-aeb2-4070f575cb3d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A33%3A16Z%20and%20correlationId%20eq%20%2712404f99-9189-4b02-b3cd-d31f4f66e26d%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"c7d82cdb-2ae6-46bf-9821-085f77f1914a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0dec4246-f76c-4b4b-8981-e43775551f7f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/c7d82cdb-2ae6-46bf-9821-085f77f1914a/ticks/636910481967270344","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:56.7270344Z","submissionTimestamp":"2019-04-16T21:50:14.0700187Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"153e4344-f2b1-4ad5-8ce1-2045de0797b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cfc32994-df76-4070-ab5c-3899b6c9d058","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/153e4344-f2b1-4ad5-8ce1-2045de0797b3/ticks/636910481966820327","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"8d60d7a5-3a56-4627-92e6-078733384815","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:56.6820327Z","submissionTimestamp":"2019-04-16T21:50:14.0700187Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"79391580-188d-442f-89a9-706f856f578c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eabf052-6091-11e9-bb3a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/events/79391580-188d-442f-89a9-706f856f578c/ticks/636910481951680832","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"d03cc670-4b33-4542-b81c-45af5cba3232","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"26367ce8-6f0c-459f-a551-e92dfd605655","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0/events/d03cc670-4b33-4542-b81c-45af5cba3232/ticks/636921847755381875","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d27876ac-b6a8-4b59-87c8-3ac3a8249b83","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7da31673-70cb-4e98-bc44-fab162eeb481"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:32:55.5381875Z","submissionTimestamp":"2019-04-30T01:33:13.1288186Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"edd2477b-d66c-40b3-954e-09fc5e7d98bd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"26367ce8-6f0c-459f-a551-e92dfd605655","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0/events/edd2477b-d66c-40b3-954e-09fc5e7d98bd/ticks/636921847753281789","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d27876ac-b6a8-4b59-87c8-3ac3a8249b83","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.3281789Z","submissionTimestamp":"2019-04-30T01:33:13.1288186Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"20b4fddf-cac2-4606-86e4-056f6fa3b330","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b31d623c-228f-4d17-8df5-da46fe7e0ab4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/20b4fddf-cac2-4606-86e4-056f6fa3b330/ticks/636921847688990884","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:48.8990884Z","submissionTimestamp":"2019-04-30T01:33:07.1092805Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"379af3f2-689e-4bb2-974f-1582016331a8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"de05e04c-a7c6-4efe-9b1b-d67f8b4e3d1e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/379af3f2-689e-4bb2-974f-1582016331a8/ticks/636921847688940886","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"aa08f2e2-da14-4511-b549-6716fad830b7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:48.8940886Z","submissionTimestamp":"2019-04-30T01:33:07.1092805Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"a61a1460-f98a-4bd1-8daa-a9116768afc0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/a61a1460-f98a-4bd1-8daa-a9116768afc0/ticks/636921847682043057","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:49:55.1680832Z","submissionTimestamp":"2019-04-16T21:50:10.1015636Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"0d11f51f-d5b3-450e-a1b3-3cb57d2b0503","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eabf052-6091-11e9-bb3a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/events/0d11f51f-d5b3-450e-a1b3-3cb57d2b0503/ticks/636910481921479327","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:52.1479327Z","submissionTimestamp":"2019-04-16T21:50:10.1015636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:48.2043057Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"600f0df5-38e0-4866-8eb3-ef712abf8630","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/600f0df5-38e0-4866-8eb3-ef712abf8630/ticks/636921847652442757","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:45.2442757Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '15346' + - '21137' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:50:22 GMT + - Tue, 30 Apr 2019 01:33:16 GMT expires: - '-1' pragma: @@ -6060,10 +6740,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461554917055431?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450189185138747?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -6075,7 +6755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:50:25 GMT + - Tue, 30 Apr 2019 01:33:17 GMT expires: - '-1' pragma: @@ -6105,76 +6785,79 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A50%3A32Z%20and%20correlationId%20eq%20%27de00623c-bc73-443a-aeb2-4070f575cb3d%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"408f40ed-0be7-4c25-856f-2e2a5ec65b91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b1b9b1e1-d930-421d-9277-5bfe7f1aa3d2","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d/events/408f40ed-0be7-4c25-856f-2e2a5ec65b91/ticks/636910482089844359","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05e96ee5-2694-4758-b077-bd0a0e9a0716","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6f66a6be-9156-4023-bba3-3757375fce0b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:50:08.9844359Z","submissionTimestamp":"2019-04-16T21:50:29.0811491Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"54543f71-b49e-4459-9fe5-b9a9af6bba17","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b1b9b1e1-d930-421d-9277-5bfe7f1aa3d2","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d/events/54543f71-b49e-4459-9fe5-b9a9af6bba17/ticks/636910482087592663","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05e96ee5-2694-4758-b077-bd0a0e9a0716","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:08.7592663Z","submissionTimestamp":"2019-04-16T21:50:29.0811491Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"4792268c-606e-438e-8e5f-364163d378d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e940e6ea-83a8-421b-8919-e2116001022a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/4792268c-606e-438e-8e5f-364163d378d9/ticks/636910482074014883","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:07.4014883Z","submissionTimestamp":"2019-04-16T21:50:24.0777778Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"f9144945-4f54-4abd-8a9d-651716befc8a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b38ff161-8395-4839-bfc6-07f8d4b94eb8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/f9144945-4f54-4abd-8a9d-651716befc8a/ticks/636910482065415434","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"3000e7a3-d6dc-4427-832c-3f2c0e14c116","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2c672952-42e3-4f60-9567-20607f5d2a8c","responseBody":"{\"name\":\"fromimage1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic\",\"etag\":\"W/\\\"dbe033a6-6f25-43fc-8e47-7e481fbf9ffb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"359d4753-090b-49bf-bc28-67c45c56680b\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\",\"etag\":\"W/\\\"dbe033a6-6f25-43fc-8e47-7e481fbf9ffb\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.6\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:06.5415434Z","submissionTimestamp":"2019-04-16T21:50:24.0777778Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"3a70c7ce-0527-4473-896b-7626c9ea2b87","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/3a70c7ce-0527-4473-896b-7626c9ea2b87/ticks/636910482053199025","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fcffeaa7-76ec-42aa-9d71-859ad9fbd0f5","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:05.3199025Z","submissionTimestamp":"2019-04-16T21:50:23.1375854Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"d26c219d-c8dd-46fa-a256-b3c0f81f0ad0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/d26c219d-c8dd-46fa-a256-b3c0f81f0ad0/ticks/636910482051655493","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"cbf42210-cf6c-4ff9-986e-731ac9c7a9fb","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:05.1655493Z","submissionTimestamp":"2019-04-16T21:50:26.141856Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"d8c9d3e9-e3df-4a12-8376-7ecd13f10d6b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b38ff161-8395-4839-bfc6-07f8d4b94eb8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/d8c9d3e9-e3df-4a12-8376-7ecd13f10d6b/ticks/636910482047809834","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"3000e7a3-d6dc-4427-832c-3f2c0e14c116","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:04.7809834Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"3a0fff88-9ca1-4e69-b27d-062b9e8b7427","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0dec4246-f76c-4b4b-8981-e43775551f7f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/3a0fff88-9ca1-4e69-b27d-062b9e8b7427/ticks/636910482000104478","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ac61e1d2-fe00-4c1e-926b-ee237ed44c5a","responseBody":"{\"name\":\"fromimage1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\",\"etag\":\"W/\\\"ec7721f8-de44-40a2-9a4b-f4b1422cc013\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b278487a-4a34-4eda-9e39-f338ce24306e\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:00.0104478Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"5bca2008-a73b-43fd-b91d-cd217fd0869b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/5bca2008-a73b-43fd-b91d-cd217fd0869b/ticks/636910481998004512","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:59.8004512Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"26e8a2f9-6947-42dd-9979-1a8761ed1ac0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cfc32994-df76-4070-ab5c-3899b6c9d058","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/26e8a2f9-6947-42dd-9979-1a8761ed1ac0/ticks/636910481994150318","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"8d60d7a5-3a56-4627-92e6-078733384815","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"7c8221f1-facd-434f-80ba-4b925b24ab7a","responseBody":"{\"name\":\"fromimage1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"017ef159-a845-4a94-ba50-c6e11c0524a3\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A33%3A26Z%20and%20correlationId%20eq%20%2712404f99-9189-4b02-b3cd-d31f4f66e26d%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"89c90ba1-3fbb-4c22-9bf4-7241d5b9aab2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/89c90ba1-3fbb-4c22-9bf4-7241d5b9aab2/ticks/636921847757673834","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"20673371-3f02-4b79-af7b-65ac2be949cc","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.7673834Z","submissionTimestamp":"2019-04-30T01:33:16.1460677Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"d03cc670-4b33-4542-b81c-45af5cba3232","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"26367ce8-6f0c-459f-a551-e92dfd605655","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0/events/d03cc670-4b33-4542-b81c-45af5cba3232/ticks/636921847755381875","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d27876ac-b6a8-4b59-87c8-3ac3a8249b83","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7da31673-70cb-4e98-bc44-fab162eeb481"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:32:55.5381875Z","submissionTimestamp":"2019-04-30T01:33:13.1288186Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"c0f49e14-8498-4d29-9818-44b3eeccf64d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1776772-f891-41e7-b6aa-9f5452ef7176","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/c0f49e14-8498-4d29-9818-44b3eeccf64d/ticks/636921847753877060","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"12725f89-b66a-43c0-a756-a021f2312d73"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:55.387706Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"edd2477b-d66c-40b3-954e-09fc5e7d98bd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"26367ce8-6f0c-459f-a551-e92dfd605655","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0/events/edd2477b-d66c-40b3-954e-09fc5e7d98bd/ticks/636921847753281789","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d27876ac-b6a8-4b59-87c8-3ac3a8249b83","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.3281789Z","submissionTimestamp":"2019-04-30T01:33:13.1288186Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"8ed15127-9414-4d35-8c0d-2521bd908b37","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/8ed15127-9414-4d35-8c0d-2521bd908b37/ticks/636921847753077301","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.3077301Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"e1dc4848-1505-4f98-b7b0-12660915781f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1776772-f891-41e7-b6aa-9f5452ef7176","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/e1dc4848-1505-4f98-b7b0-12660915781f/ticks/636921847744741359","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:54.4741359Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"55ac894e-1084-4fa0-a921-b621c24aa3a2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"455674ec-a678-4acf-9b47-54d962aced14","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/55ac894e-1084-4fa0-a921-b621c24aa3a2/ticks/636921847742691274","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5df1b1e7-5387-45b0-aa7d-813c68517f88","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"b9f6dfbd-662a-4af4-b86c-f5a0fdfd3cf5","responseBody":"{\"name\":\"fromimage1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic\",\"etag\":\"W/\\\"e5691749-75e0-4fd2-a497-51c0c1fd6142\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9bf90634-86bd-41e0-8102-5b66673c207a\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\",\"etag\":\"W/\\\"e5691749-75e0-4fd2-a497-51c0c1fd6142\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.6\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:54.2691274Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"089ce5f7-c4ee-4fbf-b756-2e4dde4f604a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"455674ec-a678-4acf-9b47-54d962aced14","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/089ce5f7-c4ee-4fbf-b756-2e4dde4f604a/ticks/636921847736041296","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5df1b1e7-5387-45b0-aa7d-813c68517f88","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:53.6041296Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"791714d0-0180-4be7-94f8-0f89ce5bb12b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b31d623c-228f-4d17-8df5-da46fe7e0ab4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/791714d0-0180-4be7-94f8-0f89ce5bb12b/ticks/636921847701441279","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bd69c03a-e5b5-4d1c-a3e6-5497f0d0978b","responseBody":"{\"name\":\"fromimage1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\",\"etag\":\"W/\\\"ce899e54-3fc9-483e-b428-9e7e4b5b8d9b\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ecaa4174-39a2-4ca3-bff5-ffe22dd39136\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:50.1441279Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"6e47390d-01ae-46c2-b3e4-8886726546e4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/6e47390d-01ae-46c2-b3e4-8886726546e4/ticks/636921847700641105","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:50.0641105Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"469c0066-20b5-49cc-b946-67566d36f194","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"de05e04c-a7c6-4efe-9b1b-d67f8b4e3d1e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/469c0066-20b5-49cc-b946-67566d36f194/ticks/636921847700290896","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"aa08f2e2-da14-4511-b549-6716fad830b7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0d3e8545-be18-40f9-a8f4-41458dcf1a57","responseBody":"{\"name\":\"fromimage1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47fbf99d-08c3-4663-ac42-257db446f3bd\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:49:59.4150318Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"c7d82cdb-2ae6-46bf-9821-085f77f1914a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0dec4246-f76c-4b4b-8981-e43775551f7f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/c7d82cdb-2ae6-46bf-9821-085f77f1914a/ticks/636910481967270344","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:56.7270344Z","submissionTimestamp":"2019-04-16T21:50:14.0700187Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"153e4344-f2b1-4ad5-8ce1-2045de0797b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cfc32994-df76-4070-ab5c-3899b6c9d058","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/153e4344-f2b1-4ad5-8ce1-2045de0797b3/ticks/636910481966820327","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"8d60d7a5-3a56-4627-92e6-078733384815","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:56.6820327Z","submissionTimestamp":"2019-04-16T21:50:14.0700187Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"79391580-188d-442f-89a9-706f856f578c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eabf052-6091-11e9-bb3a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/events/79391580-188d-442f-89a9-706f856f578c/ticks/636910481951680832","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:50.0290896Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"20b4fddf-cac2-4606-86e4-056f6fa3b330","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b31d623c-228f-4d17-8df5-da46fe7e0ab4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/20b4fddf-cac2-4606-86e4-056f6fa3b330/ticks/636921847688990884","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:48.8990884Z","submissionTimestamp":"2019-04-30T01:33:07.1092805Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"379af3f2-689e-4bb2-974f-1582016331a8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"de05e04c-a7c6-4efe-9b1b-d67f8b4e3d1e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/379af3f2-689e-4bb2-974f-1582016331a8/ticks/636921847688940886","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"aa08f2e2-da14-4511-b549-6716fad830b7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:48.8940886Z","submissionTimestamp":"2019-04-30T01:33:07.1092805Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"a61a1460-f98a-4bd1-8daa-a9116768afc0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/a61a1460-f98a-4bd1-8daa-a9116768afc0/ticks/636921847682043057","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:49:55.1680832Z","submissionTimestamp":"2019-04-16T21:50:10.1015636Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"0d11f51f-d5b3-450e-a1b3-3cb57d2b0503","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eabf052-6091-11e9-bb3a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/events/0d11f51f-d5b3-450e-a1b3-3cb57d2b0503/ticks/636910481921479327","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:52.1479327Z","submissionTimestamp":"2019-04-16T21:50:10.1015636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:48.2043057Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"600f0df5-38e0-4866-8eb3-ef712abf8630","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/600f0df5-38e0-4866-8eb3-ef712abf8630/ticks/636921847652442757","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:45.2442757Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '59890' + - '63651' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:50:33 GMT + - Tue, 30 Apr 2019 01:33:26 GMT expires: - '-1' pragma: @@ -6208,82 +6891,86 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A50%3A42Z%20and%20correlationId%20eq%20%27de00623c-bc73-443a-aeb2-4070f575cb3d%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"63ab823e-6395-4f03-94a8-5e4fc6bd58cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e940e6ea-83a8-421b-8919-e2116001022a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/63ab823e-6395-4f03-94a8-5e4fc6bd58cb/ticks/636910482096244420","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"6a235706-bdf3-4d0f-b039-b0ac38f612ec"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:09.624442Z","submissionTimestamp":"2019-04-16T21:50:34.1552752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"65bf2f0d-e5b5-4e94-abae-0e89b8c57230","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/65bf2f0d-e5b5-4e94-abae-0e89b8c57230/ticks/636910482094144105","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:09.4144105Z","submissionTimestamp":"2019-04-16T21:50:34.1552752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"408f40ed-0be7-4c25-856f-2e2a5ec65b91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b1b9b1e1-d930-421d-9277-5bfe7f1aa3d2","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d/events/408f40ed-0be7-4c25-856f-2e2a5ec65b91/ticks/636910482089844359","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05e96ee5-2694-4758-b077-bd0a0e9a0716","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6f66a6be-9156-4023-bba3-3757375fce0b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:50:08.9844359Z","submissionTimestamp":"2019-04-16T21:50:29.0811491Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"54543f71-b49e-4459-9fe5-b9a9af6bba17","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b1b9b1e1-d930-421d-9277-5bfe7f1aa3d2","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d/events/54543f71-b49e-4459-9fe5-b9a9af6bba17/ticks/636910482087592663","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05e96ee5-2694-4758-b077-bd0a0e9a0716","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:08.7592663Z","submissionTimestamp":"2019-04-16T21:50:29.0811491Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"4792268c-606e-438e-8e5f-364163d378d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e940e6ea-83a8-421b-8919-e2116001022a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/4792268c-606e-438e-8e5f-364163d378d9/ticks/636910482074014883","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:07.4014883Z","submissionTimestamp":"2019-04-16T21:50:24.0777778Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"f9144945-4f54-4abd-8a9d-651716befc8a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b38ff161-8395-4839-bfc6-07f8d4b94eb8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/f9144945-4f54-4abd-8a9d-651716befc8a/ticks/636910482065415434","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"3000e7a3-d6dc-4427-832c-3f2c0e14c116","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2c672952-42e3-4f60-9567-20607f5d2a8c","responseBody":"{\"name\":\"fromimage1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic\",\"etag\":\"W/\\\"dbe033a6-6f25-43fc-8e47-7e481fbf9ffb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"359d4753-090b-49bf-bc28-67c45c56680b\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\",\"etag\":\"W/\\\"dbe033a6-6f25-43fc-8e47-7e481fbf9ffb\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.6\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:06.5415434Z","submissionTimestamp":"2019-04-16T21:50:24.0777778Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"3a70c7ce-0527-4473-896b-7626c9ea2b87","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/3a70c7ce-0527-4473-896b-7626c9ea2b87/ticks/636910482053199025","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fcffeaa7-76ec-42aa-9d71-859ad9fbd0f5","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:05.3199025Z","submissionTimestamp":"2019-04-16T21:50:23.1375854Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"d26c219d-c8dd-46fa-a256-b3c0f81f0ad0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/d26c219d-c8dd-46fa-a256-b3c0f81f0ad0/ticks/636910482051655493","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"cbf42210-cf6c-4ff9-986e-731ac9c7a9fb","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:05.1655493Z","submissionTimestamp":"2019-04-16T21:50:26.141856Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"d8c9d3e9-e3df-4a12-8376-7ecd13f10d6b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b38ff161-8395-4839-bfc6-07f8d4b94eb8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/d8c9d3e9-e3df-4a12-8376-7ecd13f10d6b/ticks/636910482047809834","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"3000e7a3-d6dc-4427-832c-3f2c0e14c116","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:04.7809834Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"3a0fff88-9ca1-4e69-b27d-062b9e8b7427","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0dec4246-f76c-4b4b-8981-e43775551f7f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/3a0fff88-9ca1-4e69-b27d-062b9e8b7427/ticks/636910482000104478","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ac61e1d2-fe00-4c1e-926b-ee237ed44c5a","responseBody":"{\"name\":\"fromimage1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\",\"etag\":\"W/\\\"ec7721f8-de44-40a2-9a4b-f4b1422cc013\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b278487a-4a34-4eda-9e39-f338ce24306e\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:00.0104478Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"5bca2008-a73b-43fd-b91d-cd217fd0869b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/5bca2008-a73b-43fd-b91d-cd217fd0869b/ticks/636910481998004512","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:59.8004512Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"26e8a2f9-6947-42dd-9979-1a8761ed1ac0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cfc32994-df76-4070-ab5c-3899b6c9d058","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/26e8a2f9-6947-42dd-9979-1a8761ed1ac0/ticks/636910481994150318","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"8d60d7a5-3a56-4627-92e6-078733384815","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"7c8221f1-facd-434f-80ba-4b925b24ab7a","responseBody":"{\"name\":\"fromimage1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"017ef159-a845-4a94-ba50-c6e11c0524a3\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A33%3A37Z%20and%20correlationId%20eq%20%2712404f99-9189-4b02-b3cd-d31f4f66e26d%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"e98f8a44-e496-408e-8a5d-b0b6b756c599","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/e98f8a44-e496-408e-8a5d-b0b6b756c599/ticks/636921847881670008","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"02a4ff9b-c7ca-4633-ad4e-d9ac2f684d6a","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:08.1670008Z","submissionTimestamp":"2019-04-30T01:33:24.1186839Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"63ce4023-18af-4a40-a0a5-9ef0db93e7ab","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/63ce4023-18af-4a40-a0a5-9ef0db93e7ab/ticks/636921847775224047","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0ef92e13-113a-4a0b-9d04-9917ac25760e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:57.5224047Z","submissionTimestamp":"2019-04-30T01:33:16.1219158Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"89c90ba1-3fbb-4c22-9bf4-7241d5b9aab2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/89c90ba1-3fbb-4c22-9bf4-7241d5b9aab2/ticks/636921847757673834","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"20673371-3f02-4b79-af7b-65ac2be949cc","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.7673834Z","submissionTimestamp":"2019-04-30T01:33:16.1460677Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"d03cc670-4b33-4542-b81c-45af5cba3232","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"26367ce8-6f0c-459f-a551-e92dfd605655","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0/events/d03cc670-4b33-4542-b81c-45af5cba3232/ticks/636921847755381875","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d27876ac-b6a8-4b59-87c8-3ac3a8249b83","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7da31673-70cb-4e98-bc44-fab162eeb481"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:32:55.5381875Z","submissionTimestamp":"2019-04-30T01:33:13.1288186Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"c0f49e14-8498-4d29-9818-44b3eeccf64d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1776772-f891-41e7-b6aa-9f5452ef7176","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/c0f49e14-8498-4d29-9818-44b3eeccf64d/ticks/636921847753877060","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"12725f89-b66a-43c0-a756-a021f2312d73"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:55.387706Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"edd2477b-d66c-40b3-954e-09fc5e7d98bd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"26367ce8-6f0c-459f-a551-e92dfd605655","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0/events/edd2477b-d66c-40b3-954e-09fc5e7d98bd/ticks/636921847753281789","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d27876ac-b6a8-4b59-87c8-3ac3a8249b83","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.3281789Z","submissionTimestamp":"2019-04-30T01:33:13.1288186Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"8ed15127-9414-4d35-8c0d-2521bd908b37","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/8ed15127-9414-4d35-8c0d-2521bd908b37/ticks/636921847753077301","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.3077301Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"e1dc4848-1505-4f98-b7b0-12660915781f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1776772-f891-41e7-b6aa-9f5452ef7176","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/e1dc4848-1505-4f98-b7b0-12660915781f/ticks/636921847744741359","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:54.4741359Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"55ac894e-1084-4fa0-a921-b621c24aa3a2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"455674ec-a678-4acf-9b47-54d962aced14","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/55ac894e-1084-4fa0-a921-b621c24aa3a2/ticks/636921847742691274","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5df1b1e7-5387-45b0-aa7d-813c68517f88","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"b9f6dfbd-662a-4af4-b86c-f5a0fdfd3cf5","responseBody":"{\"name\":\"fromimage1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic\",\"etag\":\"W/\\\"e5691749-75e0-4fd2-a497-51c0c1fd6142\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9bf90634-86bd-41e0-8102-5b66673c207a\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\",\"etag\":\"W/\\\"e5691749-75e0-4fd2-a497-51c0c1fd6142\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.6\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:54.2691274Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"089ce5f7-c4ee-4fbf-b756-2e4dde4f604a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"455674ec-a678-4acf-9b47-54d962aced14","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/089ce5f7-c4ee-4fbf-b756-2e4dde4f604a/ticks/636921847736041296","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5df1b1e7-5387-45b0-aa7d-813c68517f88","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:53.6041296Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"791714d0-0180-4be7-94f8-0f89ce5bb12b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b31d623c-228f-4d17-8df5-da46fe7e0ab4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/791714d0-0180-4be7-94f8-0f89ce5bb12b/ticks/636921847701441279","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bd69c03a-e5b5-4d1c-a3e6-5497f0d0978b","responseBody":"{\"name\":\"fromimage1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\",\"etag\":\"W/\\\"ce899e54-3fc9-483e-b428-9e7e4b5b8d9b\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ecaa4174-39a2-4ca3-bff5-ffe22dd39136\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:50.1441279Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"6e47390d-01ae-46c2-b3e4-8886726546e4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/6e47390d-01ae-46c2-b3e4-8886726546e4/ticks/636921847700641105","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:50.0641105Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"469c0066-20b5-49cc-b946-67566d36f194","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"de05e04c-a7c6-4efe-9b1b-d67f8b4e3d1e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/469c0066-20b5-49cc-b946-67566d36f194/ticks/636921847700290896","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"aa08f2e2-da14-4511-b549-6716fad830b7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0d3e8545-be18-40f9-a8f4-41458dcf1a57","responseBody":"{\"name\":\"fromimage1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47fbf99d-08c3-4663-ac42-257db446f3bd\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:49:59.4150318Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"c7d82cdb-2ae6-46bf-9821-085f77f1914a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0dec4246-f76c-4b4b-8981-e43775551f7f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/c7d82cdb-2ae6-46bf-9821-085f77f1914a/ticks/636910481967270344","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:56.7270344Z","submissionTimestamp":"2019-04-16T21:50:14.0700187Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"153e4344-f2b1-4ad5-8ce1-2045de0797b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cfc32994-df76-4070-ab5c-3899b6c9d058","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/153e4344-f2b1-4ad5-8ce1-2045de0797b3/ticks/636910481966820327","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"8d60d7a5-3a56-4627-92e6-078733384815","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:56.6820327Z","submissionTimestamp":"2019-04-16T21:50:14.0700187Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"79391580-188d-442f-89a9-706f856f578c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eabf052-6091-11e9-bb3a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/events/79391580-188d-442f-89a9-706f856f578c/ticks/636910481951680832","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:50.0290896Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"20b4fddf-cac2-4606-86e4-056f6fa3b330","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b31d623c-228f-4d17-8df5-da46fe7e0ab4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/20b4fddf-cac2-4606-86e4-056f6fa3b330/ticks/636921847688990884","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:48.8990884Z","submissionTimestamp":"2019-04-30T01:33:07.1092805Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"379af3f2-689e-4bb2-974f-1582016331a8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"de05e04c-a7c6-4efe-9b1b-d67f8b4e3d1e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/379af3f2-689e-4bb2-974f-1582016331a8/ticks/636921847688940886","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"aa08f2e2-da14-4511-b549-6716fad830b7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:48.8940886Z","submissionTimestamp":"2019-04-30T01:33:07.1092805Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"a61a1460-f98a-4bd1-8daa-a9116768afc0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/a61a1460-f98a-4bd1-8daa-a9116768afc0/ticks/636921847682043057","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:49:55.1680832Z","submissionTimestamp":"2019-04-16T21:50:10.1015636Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"0d11f51f-d5b3-450e-a1b3-3cb57d2b0503","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eabf052-6091-11e9-bb3a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/events/0d11f51f-d5b3-450e-a1b3-3cb57d2b0503/ticks/636910481921479327","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:52.1479327Z","submissionTimestamp":"2019-04-16T21:50:10.1015636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:48.2043057Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"600f0df5-38e0-4866-8eb3-ef712abf8630","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/600f0df5-38e0-4866-8eb3-ef712abf8630/ticks/636921847652442757","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:45.2442757Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '67179' + - '70798' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:50:44 GMT + - Tue, 30 Apr 2019 01:33:37 GMT expires: - '-1' pragma: @@ -6317,86 +7004,86 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A50%3A53Z%20and%20correlationId%20eq%20%27de00623c-bc73-443a-aeb2-4070f575cb3d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A33%3A47Z%20and%20correlationId%20eq%20%2712404f99-9189-4b02-b3cd-d31f4f66e26d%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"4be2b545-8c24-4a9e-a310-c1ec5c6bde88","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/4be2b545-8c24-4a9e-a310-c1ec5c6bde88/ticks/636910482225392449","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2060890f-abdf-48b0-92cd-013c3e86ef8d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"e98f8a44-e496-408e-8a5d-b0b6b756c599","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/e98f8a44-e496-408e-8a5d-b0b6b756c599/ticks/636921847881670008","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"02a4ff9b-c7ca-4633-ad4e-d9ac2f684d6a","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:22.5392449Z","submissionTimestamp":"2019-04-16T21:50:44.0998492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"63ab823e-6395-4f03-94a8-5e4fc6bd58cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e940e6ea-83a8-421b-8919-e2116001022a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/63ab823e-6395-4f03-94a8-5e4fc6bd58cb/ticks/636910482096244420","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"6a235706-bdf3-4d0f-b039-b0ac38f612ec"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:09.624442Z","submissionTimestamp":"2019-04-16T21:50:34.1552752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"65bf2f0d-e5b5-4e94-abae-0e89b8c57230","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/65bf2f0d-e5b5-4e94-abae-0e89b8c57230/ticks/636910482094144105","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:09.4144105Z","submissionTimestamp":"2019-04-16T21:50:34.1552752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"408f40ed-0be7-4c25-856f-2e2a5ec65b91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b1b9b1e1-d930-421d-9277-5bfe7f1aa3d2","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d/events/408f40ed-0be7-4c25-856f-2e2a5ec65b91/ticks/636910482089844359","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05e96ee5-2694-4758-b077-bd0a0e9a0716","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6f66a6be-9156-4023-bba3-3757375fce0b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:50:08.9844359Z","submissionTimestamp":"2019-04-16T21:50:29.0811491Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"54543f71-b49e-4459-9fe5-b9a9af6bba17","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b1b9b1e1-d930-421d-9277-5bfe7f1aa3d2","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d/events/54543f71-b49e-4459-9fe5-b9a9af6bba17/ticks/636910482087592663","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05e96ee5-2694-4758-b077-bd0a0e9a0716","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:08.7592663Z","submissionTimestamp":"2019-04-16T21:50:29.0811491Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"4792268c-606e-438e-8e5f-364163d378d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e940e6ea-83a8-421b-8919-e2116001022a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/4792268c-606e-438e-8e5f-364163d378d9/ticks/636910482074014883","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:07.4014883Z","submissionTimestamp":"2019-04-16T21:50:24.0777778Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"f9144945-4f54-4abd-8a9d-651716befc8a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b38ff161-8395-4839-bfc6-07f8d4b94eb8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/f9144945-4f54-4abd-8a9d-651716befc8a/ticks/636910482065415434","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"3000e7a3-d6dc-4427-832c-3f2c0e14c116","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2c672952-42e3-4f60-9567-20607f5d2a8c","responseBody":"{\"name\":\"fromimage1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic\",\"etag\":\"W/\\\"dbe033a6-6f25-43fc-8e47-7e481fbf9ffb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"359d4753-090b-49bf-bc28-67c45c56680b\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\",\"etag\":\"W/\\\"dbe033a6-6f25-43fc-8e47-7e481fbf9ffb\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.6\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:06.5415434Z","submissionTimestamp":"2019-04-16T21:50:24.0777778Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"3a70c7ce-0527-4473-896b-7626c9ea2b87","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/3a70c7ce-0527-4473-896b-7626c9ea2b87/ticks/636910482053199025","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fcffeaa7-76ec-42aa-9d71-859ad9fbd0f5","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:05.3199025Z","submissionTimestamp":"2019-04-16T21:50:23.1375854Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"d26c219d-c8dd-46fa-a256-b3c0f81f0ad0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/d26c219d-c8dd-46fa-a256-b3c0f81f0ad0/ticks/636910482051655493","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"cbf42210-cf6c-4ff9-986e-731ac9c7a9fb","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:05.1655493Z","submissionTimestamp":"2019-04-16T21:50:26.141856Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"d8c9d3e9-e3df-4a12-8376-7ecd13f10d6b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b38ff161-8395-4839-bfc6-07f8d4b94eb8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/d8c9d3e9-e3df-4a12-8376-7ecd13f10d6b/ticks/636910482047809834","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"3000e7a3-d6dc-4427-832c-3f2c0e14c116","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:04.7809834Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"3a0fff88-9ca1-4e69-b27d-062b9e8b7427","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0dec4246-f76c-4b4b-8981-e43775551f7f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/3a0fff88-9ca1-4e69-b27d-062b9e8b7427/ticks/636910482000104478","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ac61e1d2-fe00-4c1e-926b-ee237ed44c5a","responseBody":"{\"name\":\"fromimage1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\",\"etag\":\"W/\\\"ec7721f8-de44-40a2-9a4b-f4b1422cc013\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b278487a-4a34-4eda-9e39-f338ce24306e\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:00.0104478Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"5bca2008-a73b-43fd-b91d-cd217fd0869b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/5bca2008-a73b-43fd-b91d-cd217fd0869b/ticks/636910481998004512","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:59.8004512Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"26e8a2f9-6947-42dd-9979-1a8761ed1ac0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cfc32994-df76-4070-ab5c-3899b6c9d058","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/26e8a2f9-6947-42dd-9979-1a8761ed1ac0/ticks/636910481994150318","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"8d60d7a5-3a56-4627-92e6-078733384815","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"7c8221f1-facd-434f-80ba-4b925b24ab7a","responseBody":"{\"name\":\"fromimage1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"017ef159-a845-4a94-ba50-c6e11c0524a3\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:08.1670008Z","submissionTimestamp":"2019-04-30T01:33:24.1186839Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"63ce4023-18af-4a40-a0a5-9ef0db93e7ab","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/63ce4023-18af-4a40-a0a5-9ef0db93e7ab/ticks/636921847775224047","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0ef92e13-113a-4a0b-9d04-9917ac25760e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:57.5224047Z","submissionTimestamp":"2019-04-30T01:33:16.1219158Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"89c90ba1-3fbb-4c22-9bf4-7241d5b9aab2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/89c90ba1-3fbb-4c22-9bf4-7241d5b9aab2/ticks/636921847757673834","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"20673371-3f02-4b79-af7b-65ac2be949cc","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.7673834Z","submissionTimestamp":"2019-04-30T01:33:16.1460677Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"d03cc670-4b33-4542-b81c-45af5cba3232","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"26367ce8-6f0c-459f-a551-e92dfd605655","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0/events/d03cc670-4b33-4542-b81c-45af5cba3232/ticks/636921847755381875","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d27876ac-b6a8-4b59-87c8-3ac3a8249b83","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7da31673-70cb-4e98-bc44-fab162eeb481"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:32:55.5381875Z","submissionTimestamp":"2019-04-30T01:33:13.1288186Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"c0f49e14-8498-4d29-9818-44b3eeccf64d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1776772-f891-41e7-b6aa-9f5452ef7176","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/c0f49e14-8498-4d29-9818-44b3eeccf64d/ticks/636921847753877060","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"12725f89-b66a-43c0-a756-a021f2312d73"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:55.387706Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"edd2477b-d66c-40b3-954e-09fc5e7d98bd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"26367ce8-6f0c-459f-a551-e92dfd605655","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0/events/edd2477b-d66c-40b3-954e-09fc5e7d98bd/ticks/636921847753281789","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d27876ac-b6a8-4b59-87c8-3ac3a8249b83","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.3281789Z","submissionTimestamp":"2019-04-30T01:33:13.1288186Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"8ed15127-9414-4d35-8c0d-2521bd908b37","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/8ed15127-9414-4d35-8c0d-2521bd908b37/ticks/636921847753077301","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.3077301Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"e1dc4848-1505-4f98-b7b0-12660915781f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1776772-f891-41e7-b6aa-9f5452ef7176","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/e1dc4848-1505-4f98-b7b0-12660915781f/ticks/636921847744741359","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:54.4741359Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"55ac894e-1084-4fa0-a921-b621c24aa3a2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"455674ec-a678-4acf-9b47-54d962aced14","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/55ac894e-1084-4fa0-a921-b621c24aa3a2/ticks/636921847742691274","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5df1b1e7-5387-45b0-aa7d-813c68517f88","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"b9f6dfbd-662a-4af4-b86c-f5a0fdfd3cf5","responseBody":"{\"name\":\"fromimage1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic\",\"etag\":\"W/\\\"e5691749-75e0-4fd2-a497-51c0c1fd6142\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9bf90634-86bd-41e0-8102-5b66673c207a\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\",\"etag\":\"W/\\\"e5691749-75e0-4fd2-a497-51c0c1fd6142\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.6\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:54.2691274Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"089ce5f7-c4ee-4fbf-b756-2e4dde4f604a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"455674ec-a678-4acf-9b47-54d962aced14","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/089ce5f7-c4ee-4fbf-b756-2e4dde4f604a/ticks/636921847736041296","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5df1b1e7-5387-45b0-aa7d-813c68517f88","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:53.6041296Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"791714d0-0180-4be7-94f8-0f89ce5bb12b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b31d623c-228f-4d17-8df5-da46fe7e0ab4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/791714d0-0180-4be7-94f8-0f89ce5bb12b/ticks/636921847701441279","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bd69c03a-e5b5-4d1c-a3e6-5497f0d0978b","responseBody":"{\"name\":\"fromimage1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\",\"etag\":\"W/\\\"ce899e54-3fc9-483e-b428-9e7e4b5b8d9b\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ecaa4174-39a2-4ca3-bff5-ffe22dd39136\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:50.1441279Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"6e47390d-01ae-46c2-b3e4-8886726546e4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/6e47390d-01ae-46c2-b3e4-8886726546e4/ticks/636921847700641105","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:50.0641105Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"469c0066-20b5-49cc-b946-67566d36f194","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"de05e04c-a7c6-4efe-9b1b-d67f8b4e3d1e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/469c0066-20b5-49cc-b946-67566d36f194/ticks/636921847700290896","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"aa08f2e2-da14-4511-b549-6716fad830b7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0d3e8545-be18-40f9-a8f4-41458dcf1a57","responseBody":"{\"name\":\"fromimage1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47fbf99d-08c3-4663-ac42-257db446f3bd\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:49:59.4150318Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"c7d82cdb-2ae6-46bf-9821-085f77f1914a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0dec4246-f76c-4b4b-8981-e43775551f7f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/c7d82cdb-2ae6-46bf-9821-085f77f1914a/ticks/636910481967270344","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:56.7270344Z","submissionTimestamp":"2019-04-16T21:50:14.0700187Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"153e4344-f2b1-4ad5-8ce1-2045de0797b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cfc32994-df76-4070-ab5c-3899b6c9d058","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/153e4344-f2b1-4ad5-8ce1-2045de0797b3/ticks/636910481966820327","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"8d60d7a5-3a56-4627-92e6-078733384815","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:56.6820327Z","submissionTimestamp":"2019-04-16T21:50:14.0700187Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"79391580-188d-442f-89a9-706f856f578c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eabf052-6091-11e9-bb3a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/events/79391580-188d-442f-89a9-706f856f578c/ticks/636910481951680832","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:50.0290896Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"20b4fddf-cac2-4606-86e4-056f6fa3b330","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b31d623c-228f-4d17-8df5-da46fe7e0ab4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/20b4fddf-cac2-4606-86e4-056f6fa3b330/ticks/636921847688990884","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:48.8990884Z","submissionTimestamp":"2019-04-30T01:33:07.1092805Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"379af3f2-689e-4bb2-974f-1582016331a8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"de05e04c-a7c6-4efe-9b1b-d67f8b4e3d1e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/379af3f2-689e-4bb2-974f-1582016331a8/ticks/636921847688940886","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"aa08f2e2-da14-4511-b549-6716fad830b7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:48.8940886Z","submissionTimestamp":"2019-04-30T01:33:07.1092805Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"a61a1460-f98a-4bd1-8daa-a9116768afc0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/a61a1460-f98a-4bd1-8daa-a9116768afc0/ticks/636921847682043057","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:49:55.1680832Z","submissionTimestamp":"2019-04-16T21:50:10.1015636Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"0d11f51f-d5b3-450e-a1b3-3cb57d2b0503","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eabf052-6091-11e9-bb3a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/events/0d11f51f-d5b3-450e-a1b3-3cb57d2b0503/ticks/636910481921479327","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:52.1479327Z","submissionTimestamp":"2019-04-16T21:50:10.1015636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:48.2043057Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"600f0df5-38e0-4866-8eb3-ef712abf8630","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/600f0df5-38e0-4866-8eb3-ef712abf8630/ticks/636921847652442757","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:45.2442757Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '70777' + - '70798' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:50:54 GMT + - Tue, 30 Apr 2019 01:33:47 GMT expires: - '-1' pragma: @@ -6428,10 +7115,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461554917055431?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450189185138747?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -6443,7 +7130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:50:54 GMT + - Tue, 30 Apr 2019 01:33:47 GMT expires: - '-1' pragma: @@ -6473,86 +7160,86 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A51%3A03Z%20and%20correlationId%20eq%20%27de00623c-bc73-443a-aeb2-4070f575cb3d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A33%3A57Z%20and%20correlationId%20eq%20%2712404f99-9189-4b02-b3cd-d31f4f66e26d%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"4be2b545-8c24-4a9e-a310-c1ec5c6bde88","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/4be2b545-8c24-4a9e-a310-c1ec5c6bde88/ticks/636910482225392449","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2060890f-abdf-48b0-92cd-013c3e86ef8d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"e98f8a44-e496-408e-8a5d-b0b6b756c599","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/e98f8a44-e496-408e-8a5d-b0b6b756c599/ticks/636921847881670008","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"02a4ff9b-c7ca-4633-ad4e-d9ac2f684d6a","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:22.5392449Z","submissionTimestamp":"2019-04-16T21:50:44.0998492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"63ab823e-6395-4f03-94a8-5e4fc6bd58cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e940e6ea-83a8-421b-8919-e2116001022a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/63ab823e-6395-4f03-94a8-5e4fc6bd58cb/ticks/636910482096244420","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"6a235706-bdf3-4d0f-b039-b0ac38f612ec"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:09.624442Z","submissionTimestamp":"2019-04-16T21:50:34.1552752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"65bf2f0d-e5b5-4e94-abae-0e89b8c57230","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/65bf2f0d-e5b5-4e94-abae-0e89b8c57230/ticks/636910482094144105","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:09.4144105Z","submissionTimestamp":"2019-04-16T21:50:34.1552752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"408f40ed-0be7-4c25-856f-2e2a5ec65b91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b1b9b1e1-d930-421d-9277-5bfe7f1aa3d2","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d/events/408f40ed-0be7-4c25-856f-2e2a5ec65b91/ticks/636910482089844359","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05e96ee5-2694-4758-b077-bd0a0e9a0716","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6f66a6be-9156-4023-bba3-3757375fce0b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:50:08.9844359Z","submissionTimestamp":"2019-04-16T21:50:29.0811491Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"54543f71-b49e-4459-9fe5-b9a9af6bba17","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b1b9b1e1-d930-421d-9277-5bfe7f1aa3d2","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d/events/54543f71-b49e-4459-9fe5-b9a9af6bba17/ticks/636910482087592663","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05e96ee5-2694-4758-b077-bd0a0e9a0716","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:08.7592663Z","submissionTimestamp":"2019-04-16T21:50:29.0811491Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"4792268c-606e-438e-8e5f-364163d378d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e940e6ea-83a8-421b-8919-e2116001022a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/4792268c-606e-438e-8e5f-364163d378d9/ticks/636910482074014883","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:07.4014883Z","submissionTimestamp":"2019-04-16T21:50:24.0777778Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"f9144945-4f54-4abd-8a9d-651716befc8a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b38ff161-8395-4839-bfc6-07f8d4b94eb8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/f9144945-4f54-4abd-8a9d-651716befc8a/ticks/636910482065415434","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"3000e7a3-d6dc-4427-832c-3f2c0e14c116","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2c672952-42e3-4f60-9567-20607f5d2a8c","responseBody":"{\"name\":\"fromimage1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic\",\"etag\":\"W/\\\"dbe033a6-6f25-43fc-8e47-7e481fbf9ffb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"359d4753-090b-49bf-bc28-67c45c56680b\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\",\"etag\":\"W/\\\"dbe033a6-6f25-43fc-8e47-7e481fbf9ffb\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.6\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:06.5415434Z","submissionTimestamp":"2019-04-16T21:50:24.0777778Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"3a70c7ce-0527-4473-896b-7626c9ea2b87","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/3a70c7ce-0527-4473-896b-7626c9ea2b87/ticks/636910482053199025","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fcffeaa7-76ec-42aa-9d71-859ad9fbd0f5","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:05.3199025Z","submissionTimestamp":"2019-04-16T21:50:23.1375854Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"d26c219d-c8dd-46fa-a256-b3c0f81f0ad0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/d26c219d-c8dd-46fa-a256-b3c0f81f0ad0/ticks/636910482051655493","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"cbf42210-cf6c-4ff9-986e-731ac9c7a9fb","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:05.1655493Z","submissionTimestamp":"2019-04-16T21:50:26.141856Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"d8c9d3e9-e3df-4a12-8376-7ecd13f10d6b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b38ff161-8395-4839-bfc6-07f8d4b94eb8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/d8c9d3e9-e3df-4a12-8376-7ecd13f10d6b/ticks/636910482047809834","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"3000e7a3-d6dc-4427-832c-3f2c0e14c116","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:04.7809834Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"3a0fff88-9ca1-4e69-b27d-062b9e8b7427","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0dec4246-f76c-4b4b-8981-e43775551f7f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/3a0fff88-9ca1-4e69-b27d-062b9e8b7427/ticks/636910482000104478","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ac61e1d2-fe00-4c1e-926b-ee237ed44c5a","responseBody":"{\"name\":\"fromimage1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\",\"etag\":\"W/\\\"ec7721f8-de44-40a2-9a4b-f4b1422cc013\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b278487a-4a34-4eda-9e39-f338ce24306e\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:00.0104478Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"5bca2008-a73b-43fd-b91d-cd217fd0869b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/5bca2008-a73b-43fd-b91d-cd217fd0869b/ticks/636910481998004512","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:59.8004512Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"26e8a2f9-6947-42dd-9979-1a8761ed1ac0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cfc32994-df76-4070-ab5c-3899b6c9d058","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/26e8a2f9-6947-42dd-9979-1a8761ed1ac0/ticks/636910481994150318","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"8d60d7a5-3a56-4627-92e6-078733384815","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"7c8221f1-facd-434f-80ba-4b925b24ab7a","responseBody":"{\"name\":\"fromimage1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"017ef159-a845-4a94-ba50-c6e11c0524a3\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:08.1670008Z","submissionTimestamp":"2019-04-30T01:33:24.1186839Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"63ce4023-18af-4a40-a0a5-9ef0db93e7ab","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/63ce4023-18af-4a40-a0a5-9ef0db93e7ab/ticks/636921847775224047","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0ef92e13-113a-4a0b-9d04-9917ac25760e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:57.5224047Z","submissionTimestamp":"2019-04-30T01:33:16.1219158Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"89c90ba1-3fbb-4c22-9bf4-7241d5b9aab2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/89c90ba1-3fbb-4c22-9bf4-7241d5b9aab2/ticks/636921847757673834","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"20673371-3f02-4b79-af7b-65ac2be949cc","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.7673834Z","submissionTimestamp":"2019-04-30T01:33:16.1460677Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"d03cc670-4b33-4542-b81c-45af5cba3232","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"26367ce8-6f0c-459f-a551-e92dfd605655","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0/events/d03cc670-4b33-4542-b81c-45af5cba3232/ticks/636921847755381875","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d27876ac-b6a8-4b59-87c8-3ac3a8249b83","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7da31673-70cb-4e98-bc44-fab162eeb481"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:32:55.5381875Z","submissionTimestamp":"2019-04-30T01:33:13.1288186Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"c0f49e14-8498-4d29-9818-44b3eeccf64d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1776772-f891-41e7-b6aa-9f5452ef7176","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/c0f49e14-8498-4d29-9818-44b3eeccf64d/ticks/636921847753877060","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"12725f89-b66a-43c0-a756-a021f2312d73"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:55.387706Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"edd2477b-d66c-40b3-954e-09fc5e7d98bd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"26367ce8-6f0c-459f-a551-e92dfd605655","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0/events/edd2477b-d66c-40b3-954e-09fc5e7d98bd/ticks/636921847753281789","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d27876ac-b6a8-4b59-87c8-3ac3a8249b83","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.3281789Z","submissionTimestamp":"2019-04-30T01:33:13.1288186Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"8ed15127-9414-4d35-8c0d-2521bd908b37","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/8ed15127-9414-4d35-8c0d-2521bd908b37/ticks/636921847753077301","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.3077301Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"e1dc4848-1505-4f98-b7b0-12660915781f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1776772-f891-41e7-b6aa-9f5452ef7176","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/e1dc4848-1505-4f98-b7b0-12660915781f/ticks/636921847744741359","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:54.4741359Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"55ac894e-1084-4fa0-a921-b621c24aa3a2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"455674ec-a678-4acf-9b47-54d962aced14","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/55ac894e-1084-4fa0-a921-b621c24aa3a2/ticks/636921847742691274","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5df1b1e7-5387-45b0-aa7d-813c68517f88","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"b9f6dfbd-662a-4af4-b86c-f5a0fdfd3cf5","responseBody":"{\"name\":\"fromimage1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic\",\"etag\":\"W/\\\"e5691749-75e0-4fd2-a497-51c0c1fd6142\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9bf90634-86bd-41e0-8102-5b66673c207a\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\",\"etag\":\"W/\\\"e5691749-75e0-4fd2-a497-51c0c1fd6142\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.6\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:54.2691274Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"089ce5f7-c4ee-4fbf-b756-2e4dde4f604a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"455674ec-a678-4acf-9b47-54d962aced14","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/089ce5f7-c4ee-4fbf-b756-2e4dde4f604a/ticks/636921847736041296","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5df1b1e7-5387-45b0-aa7d-813c68517f88","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:53.6041296Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"791714d0-0180-4be7-94f8-0f89ce5bb12b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b31d623c-228f-4d17-8df5-da46fe7e0ab4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/791714d0-0180-4be7-94f8-0f89ce5bb12b/ticks/636921847701441279","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bd69c03a-e5b5-4d1c-a3e6-5497f0d0978b","responseBody":"{\"name\":\"fromimage1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\",\"etag\":\"W/\\\"ce899e54-3fc9-483e-b428-9e7e4b5b8d9b\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ecaa4174-39a2-4ca3-bff5-ffe22dd39136\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:50.1441279Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"6e47390d-01ae-46c2-b3e4-8886726546e4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/6e47390d-01ae-46c2-b3e4-8886726546e4/ticks/636921847700641105","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:50.0641105Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"469c0066-20b5-49cc-b946-67566d36f194","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"de05e04c-a7c6-4efe-9b1b-d67f8b4e3d1e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/469c0066-20b5-49cc-b946-67566d36f194/ticks/636921847700290896","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"aa08f2e2-da14-4511-b549-6716fad830b7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0d3e8545-be18-40f9-a8f4-41458dcf1a57","responseBody":"{\"name\":\"fromimage1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47fbf99d-08c3-4663-ac42-257db446f3bd\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:49:59.4150318Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"c7d82cdb-2ae6-46bf-9821-085f77f1914a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0dec4246-f76c-4b4b-8981-e43775551f7f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/c7d82cdb-2ae6-46bf-9821-085f77f1914a/ticks/636910481967270344","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:56.7270344Z","submissionTimestamp":"2019-04-16T21:50:14.0700187Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"153e4344-f2b1-4ad5-8ce1-2045de0797b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cfc32994-df76-4070-ab5c-3899b6c9d058","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/153e4344-f2b1-4ad5-8ce1-2045de0797b3/ticks/636910481966820327","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"8d60d7a5-3a56-4627-92e6-078733384815","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:56.6820327Z","submissionTimestamp":"2019-04-16T21:50:14.0700187Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"79391580-188d-442f-89a9-706f856f578c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eabf052-6091-11e9-bb3a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/events/79391580-188d-442f-89a9-706f856f578c/ticks/636910481951680832","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:50.0290896Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"20b4fddf-cac2-4606-86e4-056f6fa3b330","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b31d623c-228f-4d17-8df5-da46fe7e0ab4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/20b4fddf-cac2-4606-86e4-056f6fa3b330/ticks/636921847688990884","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:48.8990884Z","submissionTimestamp":"2019-04-30T01:33:07.1092805Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"379af3f2-689e-4bb2-974f-1582016331a8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"de05e04c-a7c6-4efe-9b1b-d67f8b4e3d1e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/379af3f2-689e-4bb2-974f-1582016331a8/ticks/636921847688940886","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"aa08f2e2-da14-4511-b549-6716fad830b7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:48.8940886Z","submissionTimestamp":"2019-04-30T01:33:07.1092805Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"a61a1460-f98a-4bd1-8daa-a9116768afc0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/a61a1460-f98a-4bd1-8daa-a9116768afc0/ticks/636921847682043057","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:49:55.1680832Z","submissionTimestamp":"2019-04-16T21:50:10.1015636Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"0d11f51f-d5b3-450e-a1b3-3cb57d2b0503","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eabf052-6091-11e9-bb3a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/events/0d11f51f-d5b3-450e-a1b3-3cb57d2b0503/ticks/636910481921479327","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:52.1479327Z","submissionTimestamp":"2019-04-16T21:50:10.1015636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:48.2043057Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"600f0df5-38e0-4866-8eb3-ef712abf8630","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/600f0df5-38e0-4866-8eb3-ef712abf8630/ticks/636921847652442757","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:45.2442757Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '70777' + - '70798' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:05 GMT + - Tue, 30 Apr 2019 01:33:58 GMT expires: - '-1' pragma: @@ -6586,86 +7273,90 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A51%3A14Z%20and%20correlationId%20eq%20%27de00623c-bc73-443a-aeb2-4070f575cb3d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A34%3A08Z%20and%20correlationId%20eq%20%2712404f99-9189-4b02-b3cd-d31f4f66e26d%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"4be2b545-8c24-4a9e-a310-c1ec5c6bde88","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/4be2b545-8c24-4a9e-a310-c1ec5c6bde88/ticks/636910482225392449","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2060890f-abdf-48b0-92cd-013c3e86ef8d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"20df9eb5-1237-4abb-96b7-bbf5f9dbd7c8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/20df9eb5-1237-4abb-96b7-bbf5f9dbd7c8/ticks/636921848203282549","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fdc4ba80-ceac-4887-8875-a759e7a7f863","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:40.3282549Z","submissionTimestamp":"2019-04-30T01:34:01.0616981Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"e98f8a44-e496-408e-8a5d-b0b6b756c599","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/e98f8a44-e496-408e-8a5d-b0b6b756c599/ticks/636921847881670008","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"02a4ff9b-c7ca-4633-ad4e-d9ac2f684d6a","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:22.5392449Z","submissionTimestamp":"2019-04-16T21:50:44.0998492Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"63ab823e-6395-4f03-94a8-5e4fc6bd58cb","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e940e6ea-83a8-421b-8919-e2116001022a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/63ab823e-6395-4f03-94a8-5e4fc6bd58cb/ticks/636910482096244420","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"6a235706-bdf3-4d0f-b039-b0ac38f612ec"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:09.624442Z","submissionTimestamp":"2019-04-16T21:50:34.1552752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"65bf2f0d-e5b5-4e94-abae-0e89b8c57230","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/65bf2f0d-e5b5-4e94-abae-0e89b8c57230/ticks/636910482094144105","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:09.4144105Z","submissionTimestamp":"2019-04-16T21:50:34.1552752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"408f40ed-0be7-4c25-856f-2e2a5ec65b91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b1b9b1e1-d930-421d-9277-5bfe7f1aa3d2","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d/events/408f40ed-0be7-4c25-856f-2e2a5ec65b91/ticks/636910482089844359","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05e96ee5-2694-4758-b077-bd0a0e9a0716","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"6f66a6be-9156-4023-bba3-3757375fce0b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:50:08.9844359Z","submissionTimestamp":"2019-04-16T21:50:29.0811491Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"54543f71-b49e-4459-9fe5-b9a9af6bba17","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b1b9b1e1-d930-421d-9277-5bfe7f1aa3d2","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d/events/54543f71-b49e-4459-9fe5-b9a9af6bba17/ticks/636910482087592663","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05e96ee5-2694-4758-b077-bd0a0e9a0716","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:08.7592663Z","submissionTimestamp":"2019-04-16T21:50:29.0811491Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"4792268c-606e-438e-8e5f-364163d378d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e940e6ea-83a8-421b-8919-e2116001022a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/4792268c-606e-438e-8e5f-364163d378d9/ticks/636910482074014883","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"eba915f9-0a28-4839-b937-d4b5ad512833","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:07.4014883Z","submissionTimestamp":"2019-04-16T21:50:24.0777778Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"f9144945-4f54-4abd-8a9d-651716befc8a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b38ff161-8395-4839-bfc6-07f8d4b94eb8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/f9144945-4f54-4abd-8a9d-651716befc8a/ticks/636910482065415434","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"3000e7a3-d6dc-4427-832c-3f2c0e14c116","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2c672952-42e3-4f60-9567-20607f5d2a8c","responseBody":"{\"name\":\"fromimage1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic\",\"etag\":\"W/\\\"dbe033a6-6f25-43fc-8e47-7e481fbf9ffb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"359d4753-090b-49bf-bc28-67c45c56680b\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\",\"etag\":\"W/\\\"dbe033a6-6f25-43fc-8e47-7e481fbf9ffb\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.6\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:06.5415434Z","submissionTimestamp":"2019-04-16T21:50:24.0777778Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"3a70c7ce-0527-4473-896b-7626c9ea2b87","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/3a70c7ce-0527-4473-896b-7626c9ea2b87/ticks/636910482053199025","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"fcffeaa7-76ec-42aa-9d71-859ad9fbd0f5","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:05.3199025Z","submissionTimestamp":"2019-04-16T21:50:23.1375854Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"d26c219d-c8dd-46fa-a256-b3c0f81f0ad0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/d26c219d-c8dd-46fa-a256-b3c0f81f0ad0/ticks/636910482051655493","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"cbf42210-cf6c-4ff9-986e-731ac9c7a9fb","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:05.1655493Z","submissionTimestamp":"2019-04-16T21:50:26.141856Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"d8c9d3e9-e3df-4a12-8376-7ecd13f10d6b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b38ff161-8395-4839-bfc6-07f8d4b94eb8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/d8c9d3e9-e3df-4a12-8376-7ecd13f10d6b/ticks/636910482047809834","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"3000e7a3-d6dc-4427-832c-3f2c0e14c116","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:50:04.7809834Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"3a0fff88-9ca1-4e69-b27d-062b9e8b7427","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0dec4246-f76c-4b4b-8981-e43775551f7f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/3a0fff88-9ca1-4e69-b27d-062b9e8b7427/ticks/636910482000104478","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ac61e1d2-fe00-4c1e-926b-ee237ed44c5a","responseBody":"{\"name\":\"fromimage1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\",\"etag\":\"W/\\\"ec7721f8-de44-40a2-9a4b-f4b1422cc013\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b278487a-4a34-4eda-9e39-f338ce24306e\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:50:00.0104478Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"5bca2008-a73b-43fd-b91d-cd217fd0869b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/5bca2008-a73b-43fd-b91d-cd217fd0869b/ticks/636910481998004512","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:59.8004512Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"26e8a2f9-6947-42dd-9979-1a8761ed1ac0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cfc32994-df76-4070-ab5c-3899b6c9d058","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/26e8a2f9-6947-42dd-9979-1a8761ed1ac0/ticks/636910481994150318","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"8d60d7a5-3a56-4627-92e6-078733384815","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"7c8221f1-facd-434f-80ba-4b925b24ab7a","responseBody":"{\"name\":\"fromimage1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"017ef159-a845-4a94-ba50-c6e11c0524a3\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8da33339-2f6c-4786-adf1-8367ee649c77\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:33:08.1670008Z","submissionTimestamp":"2019-04-30T01:33:24.1186839Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"63ce4023-18af-4a40-a0a5-9ef0db93e7ab","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/63ce4023-18af-4a40-a0a5-9ef0db93e7ab/ticks/636921847775224047","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0ef92e13-113a-4a0b-9d04-9917ac25760e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:57.5224047Z","submissionTimestamp":"2019-04-30T01:33:16.1219158Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"89c90ba1-3fbb-4c22-9bf4-7241d5b9aab2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/89c90ba1-3fbb-4c22-9bf4-7241d5b9aab2/ticks/636921847757673834","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"20673371-3f02-4b79-af7b-65ac2be949cc","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.7673834Z","submissionTimestamp":"2019-04-30T01:33:16.1460677Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"d03cc670-4b33-4542-b81c-45af5cba3232","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"26367ce8-6f0c-459f-a551-e92dfd605655","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0/events/d03cc670-4b33-4542-b81c-45af5cba3232/ticks/636921847755381875","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d27876ac-b6a8-4b59-87c8-3ac3a8249b83","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7da31673-70cb-4e98-bc44-fab162eeb481"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:32:55.5381875Z","submissionTimestamp":"2019-04-30T01:33:13.1288186Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"c0f49e14-8498-4d29-9818-44b3eeccf64d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1776772-f891-41e7-b6aa-9f5452ef7176","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/c0f49e14-8498-4d29-9818-44b3eeccf64d/ticks/636921847753877060","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"12725f89-b66a-43c0-a756-a021f2312d73"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:55.387706Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"edd2477b-d66c-40b3-954e-09fc5e7d98bd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"26367ce8-6f0c-459f-a551-e92dfd605655","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0/events/edd2477b-d66c-40b3-954e-09fc5e7d98bd/ticks/636921847753281789","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"d27876ac-b6a8-4b59-87c8-3ac3a8249b83","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.3281789Z","submissionTimestamp":"2019-04-30T01:33:13.1288186Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"8ed15127-9414-4d35-8c0d-2521bd908b37","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/8ed15127-9414-4d35-8c0d-2521bd908b37/ticks/636921847753077301","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:55.3077301Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"e1dc4848-1505-4f98-b7b0-12660915781f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f1776772-f891-41e7-b6aa-9f5452ef7176","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1/events/e1dc4848-1505-4f98-b7b0-12660915781f/ticks/636921847744741359","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"0dd1fe81-4426-457f-b23f-4a26305fecdf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:54.4741359Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"55ac894e-1084-4fa0-a921-b621c24aa3a2","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"455674ec-a678-4acf-9b47-54d962aced14","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/55ac894e-1084-4fa0-a921-b621c24aa3a2/ticks/636921847742691274","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5df1b1e7-5387-45b0-aa7d-813c68517f88","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"b9f6dfbd-662a-4af4-b86c-f5a0fdfd3cf5","responseBody":"{\"name\":\"fromimage1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic\",\"etag\":\"W/\\\"e5691749-75e0-4fd2-a497-51c0c1fd6142\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9bf90634-86bd-41e0-8102-5b66673c207a\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\",\"etag\":\"W/\\\"e5691749-75e0-4fd2-a497-51c0c1fd6142\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.6\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:54.2691274Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"089ce5f7-c4ee-4fbf-b756-2e4dde4f604a","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"455674ec-a678-4acf-9b47-54d962aced14","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/events/089ce5f7-c4ee-4fbf-b756-2e4dde4f604a/ticks/636921847736041296","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5df1b1e7-5387-45b0-aa7d-813c68517f88","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:53.6041296Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"791714d0-0180-4be7-94f8-0f89ce5bb12b","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b31d623c-228f-4d17-8df5-da46fe7e0ab4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/791714d0-0180-4be7-94f8-0f89ce5bb12b/ticks/636921847701441279","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bd69c03a-e5b5-4d1c-a3e6-5497f0d0978b","responseBody":"{\"name\":\"fromimage1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\",\"etag\":\"W/\\\"ce899e54-3fc9-483e-b428-9e7e4b5b8d9b\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ecaa4174-39a2-4ca3-bff5-ffe22dd39136\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:50.1441279Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"6e47390d-01ae-46c2-b3e4-8886726546e4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/6e47390d-01ae-46c2-b3e4-8886726546e4/ticks/636921847700641105","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:50.0641105Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"469c0066-20b5-49cc-b946-67566d36f194","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"de05e04c-a7c6-4efe-9b1b-d67f8b4e3d1e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/469c0066-20b5-49cc-b946-67566d36f194/ticks/636921847700290896","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"aa08f2e2-da14-4511-b549-6716fad830b7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"0d3e8545-be18-40f9-a8f4-41458dcf1a57","responseBody":"{\"name\":\"fromimage1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"47fbf99d-08c3-4663-ac42-257db446f3bd\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"85ced6d4-d5ce-4ddf-a47e-83858ad80834\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:49:59.4150318Z","submissionTimestamp":"2019-04-16T21:50:24.0767766Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"c7d82cdb-2ae6-46bf-9821-085f77f1914a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"0dec4246-f76c-4b4b-8981-e43775551f7f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/c7d82cdb-2ae6-46bf-9821-085f77f1914a/ticks/636910481967270344","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"65c3d6f8-a4f3-43c3-9abd-a5cfb7d43c5c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:56.7270344Z","submissionTimestamp":"2019-04-16T21:50:14.0700187Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"153e4344-f2b1-4ad5-8ce1-2045de0797b3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"cfc32994-df76-4070-ab5c-3899b6c9d058","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/153e4344-f2b1-4ad5-8ce1-2045de0797b3/ticks/636910481966820327","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"8d60d7a5-3a56-4627-92e6-078733384815","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:56.6820327Z","submissionTimestamp":"2019-04-16T21:50:14.0700187Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"79391580-188d-442f-89a9-706f856f578c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eabf052-6091-11e9-bb3a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/events/79391580-188d-442f-89a9-706f856f578c/ticks/636910481951680832","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:50.0290896Z","submissionTimestamp":"2019-04-30T01:33:17.074101Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"20b4fddf-cac2-4606-86e4-056f6fa3b330","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b31d623c-228f-4d17-8df5-da46fe7e0ab4","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP/events/20b4fddf-cac2-4606-86e4-056f6fa3b330/ticks/636921847688990884","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0b713965-35dc-45cf-b509-c5be38a45d18","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:48.8990884Z","submissionTimestamp":"2019-04-30T01:33:07.1092805Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"379af3f2-689e-4bb2-974f-1582016331a8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"de05e04c-a7c6-4efe-9b1b-d67f8b4e3d1e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG/events/379af3f2-689e-4bb2-974f-1582016331a8/ticks/636921847688940886","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"aa08f2e2-da14-4511-b549-6716fad830b7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:48.8940886Z","submissionTimestamp":"2019-04-30T01:33:07.1092805Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"a61a1460-f98a-4bd1-8daa-a9116768afc0","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/a61a1460-f98a-4bd1-8daa-a9116768afc0/ticks/636921847682043057","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:49:55.1680832Z","submissionTimestamp":"2019-04-16T21:50:10.1015636Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","description":"","eventDataId":"0d11f51f-d5b3-450e-a1b3-3cb57d2b0503","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8eabf052-6091-11e9-bb3a-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS/events/0d11f51f-d5b3-450e-a1b3-3cb57d2b0503/ticks/636910481921479327","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:49:52.1479327Z","submissionTimestamp":"2019-04-16T21:50:10.1015636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:32:48.2043057Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","description":"","eventDataId":"600f0df5-38e0-4866-8eb3-ef712abf8630","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d9c619ae-6ae7-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1/events/600f0df5-38e0-4866-8eb3-ef712abf8630/ticks/636921847652442757","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:32:45.2442757Z","submissionTimestamp":"2019-04-30T01:33:02.110245Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '70777' + - '74398' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:15 GMT + - Tue, 30 Apr 2019 01:34:08 GMT expires: - '-1' pragma: @@ -6697,10 +7388,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461554917055431?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450189185138747?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -6712,7 +7403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:25 GMT + - Tue, 30 Apr 2019 01:34:18 GMT expires: - '-1' pragma: @@ -6740,22 +7431,22 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","name":"vm_deploy_gSiM8XHGDrNmVdEihGxOQUr8I9FKdmnS","properties":{"templateHash":"10865326987795035229","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:51:24.7376349Z","duration":"PT1M30.9655572S","correlationId":"de00623c-bc73-443a-aeb2-4070f575cb3d","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"fromimage1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"fromimage1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"fromimage1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","name":"vm_deploy_mw9PruJhkVr9PN3i417YqnyqnWmDNzh1","properties":{"templateHash":"6469168048007660348","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:34:02.7810511Z","duration":"PT1M15.8173007S","correlationId":"12404f99-9189-4b02-b3cd-d31f4f66e26d","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"fromimage1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"fromimage1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"fromimage1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3364' + - '3363' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:25 GMT + - Tue, 30 Apr 2019 01:34:18 GMT expires: - '-1' pragma: @@ -6783,23 +7474,23 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"52f9acfb-b35e-432d-bc83-6aa74808d3c6\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"4219fa37-253a-4177-bbc1-7c98b523e756\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d\",\r\ + \ \"name\": \"fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0\",\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_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"fromimage1\"\ ,\r\n \"adminUsername\": \"sdk-test-admin\",\r\n \"linuxConfiguration\"\ @@ -6810,20 +7501,20 @@ interactions: }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ : {\r\n \"computerName\": \"fromimage1\",\r\n \"osName\": \"ubuntu\"\ ,\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"\ - vmAgentVersion\": \"2.2.38\",\r\n \"statuses\": [\r\n {\r\n\ + vmAgentVersion\": \"2.2.40\",\r\n \"statuses\": [\r\n {\r\n\ \ \"code\": \"ProvisioningState/succeeded\",\r\n \"\ level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \ \"message\": \"Guest Agent is running\",\r\n \"time\": \"\ - 2019-04-16T21:51:27+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\"\ + 2019-04-30T01:34:18+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\"\ : []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\"\ - : \"fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d\",\r\n \"statuses\"\ + : \"fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0\",\r\n \"statuses\"\ : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\ - : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-16T21:50:09.5845771+00:00\"\ + : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-30T01:32:56.044808+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\": \"2019-04-16T21:51:19.8192978+00:00\"\ + \ succeeded\",\r\n \"time\": \"2019-04-30T01:34:00.2968888+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\"\ @@ -6833,11 +7524,11 @@ interactions: cache-control: - no-cache content-length: - - '3244' + - '3243' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:26 GMT + - Tue, 30 Apr 2019 01:34:20 GMT expires: - '-1' pragma: @@ -6854,7 +7545,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31794 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31975 status: code: 200 message: OK @@ -6872,8 +7563,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -6881,12 +7572,12 @@ interactions: response: body: string: "{\r\n \"name\": \"fromimage1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic\"\ - ,\r\n \"etag\": \"W/\\\"f496f56c-1118-410b-8af0-e961ffa29d49\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"0b3be049-ef38-4f01-868e-9dc2616b33d9\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"359d4753-090b-49bf-bc28-67c45c56680b\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9bf90634-86bd-41e0-8102-5b66673c207a\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigfromimage1\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\"\ - ,\r\n \"etag\": \"W/\\\"f496f56c-1118-410b-8af0-e961ffa29d49\\\"\"\ + ,\r\n \"etag\": \"W/\\\"0b3be049-ef38-4f01-868e-9dc2616b33d9\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\"\ @@ -6896,8 +7587,8 @@ interactions: \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\": \"d0nsyocv4zbudeif4fuec1hbwa.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-32-FC-B8\",\r\n \"enableAcceleratedNetworking\"\ + internalDomainNameSuffix\": \"hadqnizctluu3be5eriq5cf3la.dx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-32-E2-06\",\r\n \"enableAcceleratedNetworking\"\ : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage1NSG\"\ \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ @@ -6912,9 +7603,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:26 GMT + - Tue, 30 Apr 2019 01:34:20 GMT etag: - - W/"f496f56c-1118-410b-8af0-e961ffa29d49" + - W/"0b3be049-ef38-4f01-868e-9dc2616b33d9" expires: - '-1' pragma: @@ -6947,8 +7638,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -6956,10 +7647,10 @@ interactions: response: body: string: "{\r\n \"name\": \"fromimage1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage1PublicIP\"\ - ,\r\n \"etag\": \"W/\\\"d1af4c8b-7924-4375-a26d-82f4851a850a\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"7273f490-58b6-44cc-9936-21fa6d5272b0\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b278487a-4a34-4eda-9e39-f338ce24306e\"\ - ,\r\n \"ipAddress\": \"23.99.12.62\",\r\n \"publicIPAddressVersion\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ecaa4174-39a2-4ca3-bff5-ffe22dd39136\"\ + ,\r\n \"ipAddress\": \"40.85.153.239\",\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_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\"\ @@ -6970,13 +7661,13 @@ interactions: cache-control: - no-cache content-length: - - '1048' + - '1050' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:27 GMT + - Tue, 30 Apr 2019 01:34:20 GMT etag: - - W/"d1af4c8b-7924-4375-a26d-82f4851a850a" + - W/"7273f490-58b6-44cc-9936-21fa6d5272b0" expires: - '-1' pragma: @@ -7009,23 +7700,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage1?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"52f9acfb-b35e-432d-bc83-6aa74808d3c6\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"4219fa37-253a-4177-bbc1-7c98b523e756\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d\",\r\ + \ \"name\": \"fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0\",\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_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage1_disk1_82ea45600e4346d3ab73e59f35b4030d\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage1_disk1_f005d2d93dca4744ae6510a6d9f84fb0\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"fromimage1\"\ ,\r\n \"adminUsername\": \"sdk-test-admin\",\r\n \"linuxConfiguration\"\ @@ -7045,7 +7736,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:27 GMT + - Tue, 30 Apr 2019 01:34:21 GMT expires: - '-1' pragma: @@ -7062,7 +7753,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3975,Microsoft.Compute/LowCostGet30Min;31793 + - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31972 status: code: 200 message: OK @@ -7080,15 +7771,15 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:39:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -7097,7 +7788,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:28 GMT + - Tue, 30 Apr 2019 01:34:21 GMT expires: - '-1' pragma: @@ -7180,13 +7871,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:28 GMT + - Tue, 30 Apr 2019 01:34:22 GMT etag: - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' expires: - - Tue, 16 Apr 2019 21:56:28 GMT + - Tue, 30 Apr 2019 01:39:22 GMT source-age: - - '217' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -7194,23 +7885,23 @@ interactions: via: - 1.1 varnish x-cache: - - HIT + - MISS x-cache-hits: - - '1' + - '0' x-content-type-options: - nosniff x-fastly-request-id: - - 3b62960f880f4a82869c4325e21c099bf26a113e + - 7136e74886b6438cafa3697e2352d8520fbbaf85 x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - A636:6C8F:39C953:3E8331:5CB64D87 + - FD42:7B31:8F483:A667D:5CC7A61C x-served-by: - - cache-sea1049-SEA + - cache-dfw18644-DFW x-timer: - - S1555451489.830653,VS0,VE4 + - S1556588063.523467,VS0,VE107 x-xss-protection: - 1; mode=block status: @@ -7230,33 +7921,34 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk\"\ \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage4513b69ecd2a1a.blob.core.windows.net/vhds/osdisk_4513b69ecd.vhd\"\ + \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage6a7f420fe99d8c.blob.core.windows.net/vhds/osdisk_6a7f420fe9.vhd\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ ,\r\n \"name\": \"img-from-unmanaged\"\r\n}" headers: cache-control: - no-cache content-length: - - '1005' + - '1036' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:28 GMT + - Tue, 30 Apr 2019 01:34:22 GMT expires: - '-1' pragma: @@ -7273,7 +7965,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;355,Microsoft.Compute/GetImages30Min;1763 + - Microsoft.Compute/GetImages3Min;351,Microsoft.Compute/GetImages30Min;1775 status: code: 200 message: OK @@ -7291,33 +7983,34 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm-unmanaged-disk\"\ \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage4513b69ecd2a1a.blob.core.windows.net/vhds/osdisk_4513b69ecd.vhd\"\ + \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage6a7f420fe99d8c.blob.core.windows.net/vhds/osdisk_6a7f420fe9.vhd\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged\"\ ,\r\n \"name\": \"img-from-unmanaged\"\r\n}" headers: cache-control: - no-cache content-length: - - '1005' + - '1036' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:29 GMT + - Tue, 30 Apr 2019 01:34:22 GMT expires: - '-1' pragma: @@ -7334,7 +8027,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;354,Microsoft.Compute/GetImages30Min;1762 + - Microsoft.Compute/GetImages3Min;350,Microsoft.Compute/GetImages30Min;1774 status: code: 200 message: OK @@ -7352,8 +8045,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -7362,15 +8055,15 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm-unmanaged-diskVNET\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\"\ - ,\r\n \"etag\": \"W/\\\"22430ba7-00ef-4cfd-92fc-6e6584ecf307\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"cba81bc1-c1db-4693-b238-adfab027b4e3\\\"\",\r\ \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"382c9b1e-f655-4143-9105-f168416ce1b0\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3060738-9a22-4ee9-849f-24510f88bd58\"\ ,\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\": \"vm-unmanaged-diskSubnet\",\r\ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"\ - ,\r\n \"etag\": \"W/\\\"22430ba7-00ef-4cfd-92fc-6e6584ecf307\\\"\ + ,\r\n \"etag\": \"W/\\\"cba81bc1-c1db-4693-b238-adfab027b4e3\\\"\ \",\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\"\ @@ -7393,7 +8086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:28 GMT + - Tue, 30 Apr 2019 01:34:23 GMT expires: - '-1' pragma: @@ -7433,10 +8126,10 @@ interactions: true, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged"}}, - "osProfile": {"computerNamePrefix": "vmss1e8b2", "adminUsername": "sdk-test-admin", + "osProfile": {"computerNamePrefix": "vmss180e0", "adminUsername": "sdk-test-admin", "adminPassword": "[parameters(\''adminPassword\'')]"}, "networkProfile": {"networkInterfaceConfigurations": - [{"name": "vmss1e8b2Nic", "properties": {"primary": "true", "ipConfigurations": - [{"name": "vmss1e8b2IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet"}, + [{"name": "vmss180e0Nic", "properties": {"primary": "true", "ipConfigurations": + [{"name": "vmss180e0IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}}, "singlePlacementGroup": null}}], "outputs": {"VMSS": {"type": "object", "value": @@ -7459,26 +8152,26 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","name":"vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","properties":{"templateHash":"84825383489703083","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:51:32.488078Z","duration":"PT1.1515597S","correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","name":"vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","properties":{"templateHash":"1416117052748613856","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:34:26.6680562Z","duration":"PT1.2647087S","correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/operationStatuses/08586461553941411023?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/operationStatuses/08586450188200742743?api-version=2018-05-01 cache-control: - no-cache content-length: - - '2061' + - '2064' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:32 GMT + - Tue, 30 Apr 2019 01:34:27 GMT expires: - '-1' pragma: @@ -7508,12 +8201,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A51%3A38Z%20and%20correlationId%20eq%20%27d52affa7-cbd5-4f3b-b654-be73e726350d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A34%3A34Z%20and%20correlationId%20eq%20%27c40eb337-e811-4a7d-9d7b-1192375c177d%27 response: body: string: '{"value":[]}' @@ -7525,7 +8218,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:39 GMT + - Tue, 30 Apr 2019 01:34:34 GMT expires: - '-1' pragma: @@ -7559,24 +8252,27 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A51%3A49Z%20and%20correlationId%20eq%20%27d52affa7-cbd5-4f3b-b654-be73e726350d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A34%3A44Z%20and%20correlationId%20eq%20%27c40eb337-e811-4a7d-9d7b-1192375c177d%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"eef91927-6f3c-4853-ad38-a397f98e26d8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/eef91927-6f3c-4853-ad38-a397f98e26d8/ticks/636921848688850024","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","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":"2019-04-30T01:34:28.8850024Z","submissionTimestamp":"2019-04-30T01:34:41.0721684Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '12' + - '3799' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:51:49 GMT + - Tue, 30 Apr 2019 01:34:44 GMT expires: - '-1' pragma: @@ -7610,42 +8306,53 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A51%3A59Z%20and%20correlationId%20eq%20%27d52affa7-cbd5-4f3b-b654-be73e726350d%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"cc98c964-b213-441a-bc8d-705c0b904e4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/cc98c964-b213-441a-bc8d-705c0b904e4b/ticks/636910482972058229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"97baf143-9462-453d-a1bf-7c7564fd8f76","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"70c0da7a-372c-441f-ac64-0988e4f4fcb4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"383c3579-3b7d-41eb-87d2-876549be962c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:37.2058229Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"f63a6471-61ce-4923-b64d-d77430cccd58","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/f63a6471-61ce-4923-b64d-d77430cccd58/ticks/636910482969957946","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:36.9957946Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"66bd530e-6736-44d0-af7d-6950b9b73bb6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66bd530e-6736-44d0-af7d-6950b9b73bb6/ticks/636910482948620977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","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":"2019-04-16T21:51:34.8620977Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"68f54e9d-074c-4f71-a105-aff6b7d15f21","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/68f54e9d-074c-4f71-a105-aff6b7d15f21/ticks/636910482928050514","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A34%3A55Z%20and%20correlationId%20eq%20%27c40eb337-e811-4a7d-9d7b-1192375c177d%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"90401be0-1f25-4682-8155-26d308beb0b4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/90401be0-1f25-4682-8155-26d308beb0b4/ticks/636921848778431585","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8431585Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"8f4bd0b2-0696-44dc-abd4-c26010d6ddd3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/8f4bd0b2-0696-44dc-abd4-c26010d6ddd3/ticks/636921848778017467","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"00989d30-7a74-42ba-9f3b-a3c22b6a3e3c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8017467Z","submissionTimestamp":"2019-04-30T01:34:52.0708832Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"b5c107f2-4171-4b61-8562-187f1210c49d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/b5c107f2-4171-4b61-8562-187f1210c49d/ticks/636921848769134515","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"0f15d50a-0ce5-4158-94c9-18ef8e039dc9","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8d693512-ff1c-4c20-a33b-9ff7ca9c4a69\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"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_vm_custom_image000001/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":"2019-04-30T01:34:36.9134515Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e90536df-341d-4963-a03d-bb079be707c8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e90536df-341d-4963-a03d-bb079be707c8/ticks/636921848752384320","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:35.238432Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"93784e91-807e-464f-92d7-ac93755984f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/93784e91-807e-464f-92d7-ac93755984f3/ticks/636921848721091104","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ae2a9938-2294-4cae-b034-0b8838ed0b60","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"c5a031e4-4533-40c6-bf8c-f5b35762f534\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"38dda0c1-e46f-48cb-90e1-998e0dafb7d3\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:32.1091104Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"eef91927-6f3c-4853-ad38-a397f98e26d8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/eef91927-6f3c-4853-ad38-a397f98e26d8/ticks/636921848688850024","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","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":"2019-04-30T01:34:28.8850024Z","submissionTimestamp":"2019-04-30T01:34:41.0721684Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"3940343b-3b2e-457d-bf71-6f94508a5f44","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/3940343b-3b2e-457d-bf71-6f94508a5f44/ticks/636921848670913977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:32.8050514Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278/ticks/636910482896250399","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:29.6250399Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:27.0913977Z","submissionTimestamp":"2019-04-30T01:34:46.1181772Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1/ticks/636921848636863954","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:23.6863954Z","submissionTimestamp":"2019-04-30T01:34:46.1171765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '19341' + - '34340' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:52:00 GMT + - Tue, 30 Apr 2019 01:34:55 GMT expires: - '-1' pragma: @@ -7677,10 +8384,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461553941411023?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450188200742743?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -7692,7 +8399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:52:02 GMT + - Tue, 30 Apr 2019 01:34:56 GMT expires: - '-1' pragma: @@ -7722,61 +8429,61 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A52%3A09Z%20and%20correlationId%20eq%20%27d52affa7-cbd5-4f3b-b654-be73e726350d%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"60dd5c05-70ce-4f00-bdf7-ad0b10727cbe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/60dd5c05-70ce-4f00-bdf7-ad0b10727cbe/ticks/636910483051976537","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"54d40adc-3449-4930-aee8-b783c1f6deaa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:45.1976537Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"86be90ac-e043-46f9-85aa-66c732c3e57a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/86be90ac-e043-46f9-85aa-66c732c3e57a/ticks/636910483049922056","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:44.9922056Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"db4f58f8-6c87-489a-a9b5-c509f6b7f9e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/db4f58f8-6c87-489a-a9b5-c509f6b7f9e9/ticks/636910483028822168","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.8822168Z","submissionTimestamp":"2019-04-16T21:52:01.1173308Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"2fc62f84-519c-4b51-a72d-bd35339b968e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/2fc62f84-519c-4b51-a72d-bd35339b968e/ticks/636910483024464810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"37098e3f-0c3e-4b4a-8b00-34bfc2a36b3e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.446481Z","submissionTimestamp":"2019-04-16T21:52:08.0950865Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"34be5d16-ce62-4c78-88e9-164c70c6b5ea","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/34be5d16-ce62-4c78-88e9-164c70c6b5ea/ticks/636910483020171857","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"9cefb990-b813-4ab5-b1d1-f560c934401d","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7fe7d98e-acf0-41d5-9b5e-6b7d55273419\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"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_vm_custom_image000001/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":"2019-04-16T21:51:42.0171857Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"e32b0a36-15cc-4c15-9601-d9d51d17a181","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e32b0a36-15cc-4c15-9601-d9d51d17a181/ticks/636910483003022336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:40.3022336Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"cc98c964-b213-441a-bc8d-705c0b904e4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/cc98c964-b213-441a-bc8d-705c0b904e4b/ticks/636910482972058229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"97baf143-9462-453d-a1bf-7c7564fd8f76","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"70c0da7a-372c-441f-ac64-0988e4f4fcb4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"383c3579-3b7d-41eb-87d2-876549be962c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:37.2058229Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"f63a6471-61ce-4923-b64d-d77430cccd58","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/f63a6471-61ce-4923-b64d-d77430cccd58/ticks/636910482969957946","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:36.9957946Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"66bd530e-6736-44d0-af7d-6950b9b73bb6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66bd530e-6736-44d0-af7d-6950b9b73bb6/ticks/636910482948620977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","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":"2019-04-16T21:51:34.8620977Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"68f54e9d-074c-4f71-a105-aff6b7d15f21","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/68f54e9d-074c-4f71-a105-aff6b7d15f21/ticks/636910482928050514","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A05Z%20and%20correlationId%20eq%20%27c40eb337-e811-4a7d-9d7b-1192375c177d%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"4a83bca1-1b1e-4951-a086-4685bd6950ec","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/4a83bca1-1b1e-4951-a086-4685bd6950ec/ticks/636921848804421414","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"0303ed1f-be17-4b28-9b3e-db25c5ad9bcc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:40.4421414Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"f46d00cb-75f6-40ed-9c50-95f70ae2ccb9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/f46d00cb-75f6-40ed-9c50-95f70ae2ccb9/ticks/636921848802271689","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:40.2271689Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"90401be0-1f25-4682-8155-26d308beb0b4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/90401be0-1f25-4682-8155-26d308beb0b4/ticks/636921848778431585","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8431585Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"8f4bd0b2-0696-44dc-abd4-c26010d6ddd3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/8f4bd0b2-0696-44dc-abd4-c26010d6ddd3/ticks/636921848778017467","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"00989d30-7a74-42ba-9f3b-a3c22b6a3e3c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8017467Z","submissionTimestamp":"2019-04-30T01:34:52.0708832Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"b5c107f2-4171-4b61-8562-187f1210c49d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/b5c107f2-4171-4b61-8562-187f1210c49d/ticks/636921848769134515","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"0f15d50a-0ce5-4158-94c9-18ef8e039dc9","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8d693512-ff1c-4c20-a33b-9ff7ca9c4a69\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"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_vm_custom_image000001/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":"2019-04-30T01:34:36.9134515Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e90536df-341d-4963-a03d-bb079be707c8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e90536df-341d-4963-a03d-bb079be707c8/ticks/636921848752384320","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:35.238432Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"93784e91-807e-464f-92d7-ac93755984f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/93784e91-807e-464f-92d7-ac93755984f3/ticks/636921848721091104","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ae2a9938-2294-4cae-b034-0b8838ed0b60","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"c5a031e4-4533-40c6-bf8c-f5b35762f534\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"38dda0c1-e46f-48cb-90e1-998e0dafb7d3\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:32.1091104Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"66dce5b6-d5e1-49a0-80e8-99846c7516d4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66dce5b6-d5e1-49a0-80e8-99846c7516d4/ticks/636921848718941033","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:31.8941033Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"eef91927-6f3c-4853-ad38-a397f98e26d8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/eef91927-6f3c-4853-ad38-a397f98e26d8/ticks/636921848688850024","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","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":"2019-04-30T01:34:28.8850024Z","submissionTimestamp":"2019-04-30T01:34:41.0721684Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"3940343b-3b2e-457d-bf71-6f94508a5f44","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/3940343b-3b2e-457d-bf71-6f94508a5f44/ticks/636921848670913977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:32.8050514Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278/ticks/636910482896250399","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:29.6250399Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:27.0913977Z","submissionTimestamp":"2019-04-30T01:34:46.1181772Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1/ticks/636921848636863954","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:23.6863954Z","submissionTimestamp":"2019-04-30T01:34:46.1171765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '45255' + - '45277' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:52:10 GMT + - Tue, 30 Apr 2019 01:35:06 GMT expires: - '-1' pragma: @@ -7810,61 +8517,65 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A52%3A20Z%20and%20correlationId%20eq%20%27d52affa7-cbd5-4f3b-b654-be73e726350d%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"60dd5c05-70ce-4f00-bdf7-ad0b10727cbe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/60dd5c05-70ce-4f00-bdf7-ad0b10727cbe/ticks/636910483051976537","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"54d40adc-3449-4930-aee8-b783c1f6deaa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:45.1976537Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"86be90ac-e043-46f9-85aa-66c732c3e57a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/86be90ac-e043-46f9-85aa-66c732c3e57a/ticks/636910483049922056","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:44.9922056Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"db4f58f8-6c87-489a-a9b5-c509f6b7f9e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/db4f58f8-6c87-489a-a9b5-c509f6b7f9e9/ticks/636910483028822168","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.8822168Z","submissionTimestamp":"2019-04-16T21:52:01.1173308Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"2fc62f84-519c-4b51-a72d-bd35339b968e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/2fc62f84-519c-4b51-a72d-bd35339b968e/ticks/636910483024464810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"37098e3f-0c3e-4b4a-8b00-34bfc2a36b3e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.446481Z","submissionTimestamp":"2019-04-16T21:52:08.0950865Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"34be5d16-ce62-4c78-88e9-164c70c6b5ea","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/34be5d16-ce62-4c78-88e9-164c70c6b5ea/ticks/636910483020171857","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"9cefb990-b813-4ab5-b1d1-f560c934401d","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7fe7d98e-acf0-41d5-9b5e-6b7d55273419\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"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_vm_custom_image000001/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":"2019-04-16T21:51:42.0171857Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"e32b0a36-15cc-4c15-9601-d9d51d17a181","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e32b0a36-15cc-4c15-9601-d9d51d17a181/ticks/636910483003022336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:40.3022336Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"cc98c964-b213-441a-bc8d-705c0b904e4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/cc98c964-b213-441a-bc8d-705c0b904e4b/ticks/636910482972058229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"97baf143-9462-453d-a1bf-7c7564fd8f76","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"70c0da7a-372c-441f-ac64-0988e4f4fcb4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"383c3579-3b7d-41eb-87d2-876549be962c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:37.2058229Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"f63a6471-61ce-4923-b64d-d77430cccd58","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/f63a6471-61ce-4923-b64d-d77430cccd58/ticks/636910482969957946","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:36.9957946Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"66bd530e-6736-44d0-af7d-6950b9b73bb6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66bd530e-6736-44d0-af7d-6950b9b73bb6/ticks/636910482948620977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","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":"2019-04-16T21:51:34.8620977Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"68f54e9d-074c-4f71-a105-aff6b7d15f21","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/68f54e9d-074c-4f71-a105-aff6b7d15f21/ticks/636910482928050514","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A16Z%20and%20correlationId%20eq%20%27c40eb337-e811-4a7d-9d7b-1192375c177d%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8/ticks/636921848926412528","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"912e7d07-fee1-4887-a0a3-30277e9313dd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.6412528Z","submissionTimestamp":"2019-04-30T01:35:14.0753705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"4a83bca1-1b1e-4951-a086-4685bd6950ec","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/4a83bca1-1b1e-4951-a086-4685bd6950ec/ticks/636921848804421414","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"0303ed1f-be17-4b28-9b3e-db25c5ad9bcc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:40.4421414Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"f46d00cb-75f6-40ed-9c50-95f70ae2ccb9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/f46d00cb-75f6-40ed-9c50-95f70ae2ccb9/ticks/636921848802271689","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:40.2271689Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"90401be0-1f25-4682-8155-26d308beb0b4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/90401be0-1f25-4682-8155-26d308beb0b4/ticks/636921848778431585","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8431585Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"8f4bd0b2-0696-44dc-abd4-c26010d6ddd3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/8f4bd0b2-0696-44dc-abd4-c26010d6ddd3/ticks/636921848778017467","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"00989d30-7a74-42ba-9f3b-a3c22b6a3e3c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8017467Z","submissionTimestamp":"2019-04-30T01:34:52.0708832Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"b5c107f2-4171-4b61-8562-187f1210c49d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/b5c107f2-4171-4b61-8562-187f1210c49d/ticks/636921848769134515","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"0f15d50a-0ce5-4158-94c9-18ef8e039dc9","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8d693512-ff1c-4c20-a33b-9ff7ca9c4a69\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"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_vm_custom_image000001/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":"2019-04-30T01:34:36.9134515Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e90536df-341d-4963-a03d-bb079be707c8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e90536df-341d-4963-a03d-bb079be707c8/ticks/636921848752384320","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:35.238432Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"93784e91-807e-464f-92d7-ac93755984f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/93784e91-807e-464f-92d7-ac93755984f3/ticks/636921848721091104","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ae2a9938-2294-4cae-b034-0b8838ed0b60","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"c5a031e4-4533-40c6-bf8c-f5b35762f534\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"38dda0c1-e46f-48cb-90e1-998e0dafb7d3\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:32.1091104Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"66dce5b6-d5e1-49a0-80e8-99846c7516d4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66dce5b6-d5e1-49a0-80e8-99846c7516d4/ticks/636921848718941033","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:31.8941033Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"eef91927-6f3c-4853-ad38-a397f98e26d8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/eef91927-6f3c-4853-ad38-a397f98e26d8/ticks/636921848688850024","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","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":"2019-04-30T01:34:28.8850024Z","submissionTimestamp":"2019-04-30T01:34:41.0721684Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"3940343b-3b2e-457d-bf71-6f94508a5f44","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/3940343b-3b2e-457d-bf71-6f94508a5f44/ticks/636921848670913977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:32.8050514Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278/ticks/636910482896250399","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:29.6250399Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:27.0913977Z","submissionTimestamp":"2019-04-30T01:34:46.1181772Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1/ticks/636921848636863954","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:23.6863954Z","submissionTimestamp":"2019-04-30T01:34:46.1171765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '45255' + - '48928' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:52:21 GMT + - Tue, 30 Apr 2019 01:35:15 GMT expires: - '-1' pragma: @@ -7898,65 +8609,65 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A52%3A30Z%20and%20correlationId%20eq%20%27d52affa7-cbd5-4f3b-b654-be73e726350d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A26Z%20and%20correlationId%20eq%20%27c40eb337-e811-4a7d-9d7b-1192375c177d%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"7547b240-ba29-4952-8f7c-29902b2de542","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/7547b240-ba29-4952-8f7c-29902b2de542/ticks/636910483192613002","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"144a256e-c210-42bc-b045-1e3438c78f07","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8/ticks/636921848926412528","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"912e7d07-fee1-4887-a0a3-30277e9313dd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:59.2613002Z","submissionTimestamp":"2019-04-16T21:52:24.0757991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"60dd5c05-70ce-4f00-bdf7-ad0b10727cbe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/60dd5c05-70ce-4f00-bdf7-ad0b10727cbe/ticks/636910483051976537","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"54d40adc-3449-4930-aee8-b783c1f6deaa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:45.1976537Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"86be90ac-e043-46f9-85aa-66c732c3e57a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/86be90ac-e043-46f9-85aa-66c732c3e57a/ticks/636910483049922056","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:44.9922056Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"db4f58f8-6c87-489a-a9b5-c509f6b7f9e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/db4f58f8-6c87-489a-a9b5-c509f6b7f9e9/ticks/636910483028822168","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.8822168Z","submissionTimestamp":"2019-04-16T21:52:01.1173308Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"2fc62f84-519c-4b51-a72d-bd35339b968e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/2fc62f84-519c-4b51-a72d-bd35339b968e/ticks/636910483024464810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"37098e3f-0c3e-4b4a-8b00-34bfc2a36b3e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.446481Z","submissionTimestamp":"2019-04-16T21:52:08.0950865Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"34be5d16-ce62-4c78-88e9-164c70c6b5ea","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/34be5d16-ce62-4c78-88e9-164c70c6b5ea/ticks/636910483020171857","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"9cefb990-b813-4ab5-b1d1-f560c934401d","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7fe7d98e-acf0-41d5-9b5e-6b7d55273419\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"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_vm_custom_image000001/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":"2019-04-16T21:51:42.0171857Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"e32b0a36-15cc-4c15-9601-d9d51d17a181","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e32b0a36-15cc-4c15-9601-d9d51d17a181/ticks/636910483003022336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:40.3022336Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"cc98c964-b213-441a-bc8d-705c0b904e4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/cc98c964-b213-441a-bc8d-705c0b904e4b/ticks/636910482972058229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"97baf143-9462-453d-a1bf-7c7564fd8f76","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"70c0da7a-372c-441f-ac64-0988e4f4fcb4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"383c3579-3b7d-41eb-87d2-876549be962c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:37.2058229Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"f63a6471-61ce-4923-b64d-d77430cccd58","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/f63a6471-61ce-4923-b64d-d77430cccd58/ticks/636910482969957946","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:36.9957946Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"66bd530e-6736-44d0-af7d-6950b9b73bb6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66bd530e-6736-44d0-af7d-6950b9b73bb6/ticks/636910482948620977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","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":"2019-04-16T21:51:34.8620977Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"68f54e9d-074c-4f71-a105-aff6b7d15f21","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/68f54e9d-074c-4f71-a105-aff6b7d15f21/ticks/636910482928050514","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.6412528Z","submissionTimestamp":"2019-04-30T01:35:14.0753705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"4a83bca1-1b1e-4951-a086-4685bd6950ec","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/4a83bca1-1b1e-4951-a086-4685bd6950ec/ticks/636921848804421414","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"0303ed1f-be17-4b28-9b3e-db25c5ad9bcc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:40.4421414Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"f46d00cb-75f6-40ed-9c50-95f70ae2ccb9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/f46d00cb-75f6-40ed-9c50-95f70ae2ccb9/ticks/636921848802271689","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:40.2271689Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"90401be0-1f25-4682-8155-26d308beb0b4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/90401be0-1f25-4682-8155-26d308beb0b4/ticks/636921848778431585","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8431585Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"8f4bd0b2-0696-44dc-abd4-c26010d6ddd3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/8f4bd0b2-0696-44dc-abd4-c26010d6ddd3/ticks/636921848778017467","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"00989d30-7a74-42ba-9f3b-a3c22b6a3e3c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8017467Z","submissionTimestamp":"2019-04-30T01:34:52.0708832Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"b5c107f2-4171-4b61-8562-187f1210c49d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/b5c107f2-4171-4b61-8562-187f1210c49d/ticks/636921848769134515","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"0f15d50a-0ce5-4158-94c9-18ef8e039dc9","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8d693512-ff1c-4c20-a33b-9ff7ca9c4a69\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"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_vm_custom_image000001/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":"2019-04-30T01:34:36.9134515Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e90536df-341d-4963-a03d-bb079be707c8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e90536df-341d-4963-a03d-bb079be707c8/ticks/636921848752384320","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:35.238432Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"93784e91-807e-464f-92d7-ac93755984f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/93784e91-807e-464f-92d7-ac93755984f3/ticks/636921848721091104","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ae2a9938-2294-4cae-b034-0b8838ed0b60","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"c5a031e4-4533-40c6-bf8c-f5b35762f534\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"38dda0c1-e46f-48cb-90e1-998e0dafb7d3\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:32.1091104Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"66dce5b6-d5e1-49a0-80e8-99846c7516d4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66dce5b6-d5e1-49a0-80e8-99846c7516d4/ticks/636921848718941033","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:31.8941033Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"eef91927-6f3c-4853-ad38-a397f98e26d8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/eef91927-6f3c-4853-ad38-a397f98e26d8/ticks/636921848688850024","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","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":"2019-04-30T01:34:28.8850024Z","submissionTimestamp":"2019-04-30T01:34:41.0721684Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"3940343b-3b2e-457d-bf71-6f94508a5f44","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/3940343b-3b2e-457d-bf71-6f94508a5f44/ticks/636921848670913977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:32.8050514Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278/ticks/636910482896250399","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:29.6250399Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:27.0913977Z","submissionTimestamp":"2019-04-30T01:34:46.1181772Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1/ticks/636921848636863954","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:23.6863954Z","submissionTimestamp":"2019-04-30T01:34:46.1171765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '48904' + - '48928' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:52:31 GMT + - Tue, 30 Apr 2019 01:35:27 GMT expires: - '-1' pragma: @@ -7988,10 +8699,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461553941411023?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450188200742743?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -8003,7 +8714,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:52:32 GMT + - Tue, 30 Apr 2019 01:35:27 GMT expires: - '-1' pragma: @@ -8033,65 +8744,65 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A52%3A41Z%20and%20correlationId%20eq%20%27d52affa7-cbd5-4f3b-b654-be73e726350d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A37Z%20and%20correlationId%20eq%20%27c40eb337-e811-4a7d-9d7b-1192375c177d%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"7547b240-ba29-4952-8f7c-29902b2de542","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/7547b240-ba29-4952-8f7c-29902b2de542/ticks/636910483192613002","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"144a256e-c210-42bc-b045-1e3438c78f07","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8/ticks/636921848926412528","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"912e7d07-fee1-4887-a0a3-30277e9313dd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:59.2613002Z","submissionTimestamp":"2019-04-16T21:52:24.0757991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"60dd5c05-70ce-4f00-bdf7-ad0b10727cbe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/60dd5c05-70ce-4f00-bdf7-ad0b10727cbe/ticks/636910483051976537","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"54d40adc-3449-4930-aee8-b783c1f6deaa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:45.1976537Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"86be90ac-e043-46f9-85aa-66c732c3e57a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/86be90ac-e043-46f9-85aa-66c732c3e57a/ticks/636910483049922056","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:44.9922056Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"db4f58f8-6c87-489a-a9b5-c509f6b7f9e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/db4f58f8-6c87-489a-a9b5-c509f6b7f9e9/ticks/636910483028822168","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.8822168Z","submissionTimestamp":"2019-04-16T21:52:01.1173308Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"2fc62f84-519c-4b51-a72d-bd35339b968e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/2fc62f84-519c-4b51-a72d-bd35339b968e/ticks/636910483024464810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"37098e3f-0c3e-4b4a-8b00-34bfc2a36b3e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.446481Z","submissionTimestamp":"2019-04-16T21:52:08.0950865Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"34be5d16-ce62-4c78-88e9-164c70c6b5ea","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/34be5d16-ce62-4c78-88e9-164c70c6b5ea/ticks/636910483020171857","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"9cefb990-b813-4ab5-b1d1-f560c934401d","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7fe7d98e-acf0-41d5-9b5e-6b7d55273419\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"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_vm_custom_image000001/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":"2019-04-16T21:51:42.0171857Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"e32b0a36-15cc-4c15-9601-d9d51d17a181","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e32b0a36-15cc-4c15-9601-d9d51d17a181/ticks/636910483003022336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:40.3022336Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"cc98c964-b213-441a-bc8d-705c0b904e4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/cc98c964-b213-441a-bc8d-705c0b904e4b/ticks/636910482972058229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"97baf143-9462-453d-a1bf-7c7564fd8f76","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"70c0da7a-372c-441f-ac64-0988e4f4fcb4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"383c3579-3b7d-41eb-87d2-876549be962c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:37.2058229Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"f63a6471-61ce-4923-b64d-d77430cccd58","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/f63a6471-61ce-4923-b64d-d77430cccd58/ticks/636910482969957946","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:36.9957946Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"66bd530e-6736-44d0-af7d-6950b9b73bb6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66bd530e-6736-44d0-af7d-6950b9b73bb6/ticks/636910482948620977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","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":"2019-04-16T21:51:34.8620977Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"68f54e9d-074c-4f71-a105-aff6b7d15f21","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/68f54e9d-074c-4f71-a105-aff6b7d15f21/ticks/636910482928050514","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.6412528Z","submissionTimestamp":"2019-04-30T01:35:14.0753705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"4a83bca1-1b1e-4951-a086-4685bd6950ec","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/4a83bca1-1b1e-4951-a086-4685bd6950ec/ticks/636921848804421414","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"0303ed1f-be17-4b28-9b3e-db25c5ad9bcc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:40.4421414Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"f46d00cb-75f6-40ed-9c50-95f70ae2ccb9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/f46d00cb-75f6-40ed-9c50-95f70ae2ccb9/ticks/636921848802271689","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:40.2271689Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"90401be0-1f25-4682-8155-26d308beb0b4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/90401be0-1f25-4682-8155-26d308beb0b4/ticks/636921848778431585","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8431585Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"8f4bd0b2-0696-44dc-abd4-c26010d6ddd3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/8f4bd0b2-0696-44dc-abd4-c26010d6ddd3/ticks/636921848778017467","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"00989d30-7a74-42ba-9f3b-a3c22b6a3e3c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8017467Z","submissionTimestamp":"2019-04-30T01:34:52.0708832Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"b5c107f2-4171-4b61-8562-187f1210c49d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/b5c107f2-4171-4b61-8562-187f1210c49d/ticks/636921848769134515","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"0f15d50a-0ce5-4158-94c9-18ef8e039dc9","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8d693512-ff1c-4c20-a33b-9ff7ca9c4a69\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"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_vm_custom_image000001/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":"2019-04-30T01:34:36.9134515Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e90536df-341d-4963-a03d-bb079be707c8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e90536df-341d-4963-a03d-bb079be707c8/ticks/636921848752384320","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:35.238432Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"93784e91-807e-464f-92d7-ac93755984f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/93784e91-807e-464f-92d7-ac93755984f3/ticks/636921848721091104","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ae2a9938-2294-4cae-b034-0b8838ed0b60","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"c5a031e4-4533-40c6-bf8c-f5b35762f534\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"38dda0c1-e46f-48cb-90e1-998e0dafb7d3\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:32.1091104Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"66dce5b6-d5e1-49a0-80e8-99846c7516d4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66dce5b6-d5e1-49a0-80e8-99846c7516d4/ticks/636921848718941033","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:31.8941033Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"eef91927-6f3c-4853-ad38-a397f98e26d8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/eef91927-6f3c-4853-ad38-a397f98e26d8/ticks/636921848688850024","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","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":"2019-04-30T01:34:28.8850024Z","submissionTimestamp":"2019-04-30T01:34:41.0721684Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"3940343b-3b2e-457d-bf71-6f94508a5f44","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/3940343b-3b2e-457d-bf71-6f94508a5f44/ticks/636921848670913977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:32.8050514Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278/ticks/636910482896250399","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:29.6250399Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:27.0913977Z","submissionTimestamp":"2019-04-30T01:34:46.1181772Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1/ticks/636921848636863954","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:23.6863954Z","submissionTimestamp":"2019-04-30T01:34:46.1171765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '48904' + - '48928' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:52:42 GMT + - Tue, 30 Apr 2019 01:35:37 GMT expires: - '-1' pragma: @@ -8125,65 +8836,65 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A52%3A51Z%20and%20correlationId%20eq%20%27d52affa7-cbd5-4f3b-b654-be73e726350d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A47Z%20and%20correlationId%20eq%20%27c40eb337-e811-4a7d-9d7b-1192375c177d%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"7547b240-ba29-4952-8f7c-29902b2de542","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/7547b240-ba29-4952-8f7c-29902b2de542/ticks/636910483192613002","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"144a256e-c210-42bc-b045-1e3438c78f07","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8/ticks/636921848926412528","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"912e7d07-fee1-4887-a0a3-30277e9313dd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:59.2613002Z","submissionTimestamp":"2019-04-16T21:52:24.0757991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"60dd5c05-70ce-4f00-bdf7-ad0b10727cbe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/60dd5c05-70ce-4f00-bdf7-ad0b10727cbe/ticks/636910483051976537","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"54d40adc-3449-4930-aee8-b783c1f6deaa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:45.1976537Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"86be90ac-e043-46f9-85aa-66c732c3e57a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/86be90ac-e043-46f9-85aa-66c732c3e57a/ticks/636910483049922056","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:44.9922056Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"db4f58f8-6c87-489a-a9b5-c509f6b7f9e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/db4f58f8-6c87-489a-a9b5-c509f6b7f9e9/ticks/636910483028822168","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.8822168Z","submissionTimestamp":"2019-04-16T21:52:01.1173308Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"2fc62f84-519c-4b51-a72d-bd35339b968e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/2fc62f84-519c-4b51-a72d-bd35339b968e/ticks/636910483024464810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"37098e3f-0c3e-4b4a-8b00-34bfc2a36b3e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.446481Z","submissionTimestamp":"2019-04-16T21:52:08.0950865Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"34be5d16-ce62-4c78-88e9-164c70c6b5ea","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/34be5d16-ce62-4c78-88e9-164c70c6b5ea/ticks/636910483020171857","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"9cefb990-b813-4ab5-b1d1-f560c934401d","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7fe7d98e-acf0-41d5-9b5e-6b7d55273419\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"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_vm_custom_image000001/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":"2019-04-16T21:51:42.0171857Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"e32b0a36-15cc-4c15-9601-d9d51d17a181","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e32b0a36-15cc-4c15-9601-d9d51d17a181/ticks/636910483003022336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:40.3022336Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"cc98c964-b213-441a-bc8d-705c0b904e4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/cc98c964-b213-441a-bc8d-705c0b904e4b/ticks/636910482972058229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"97baf143-9462-453d-a1bf-7c7564fd8f76","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"70c0da7a-372c-441f-ac64-0988e4f4fcb4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"383c3579-3b7d-41eb-87d2-876549be962c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:37.2058229Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"f63a6471-61ce-4923-b64d-d77430cccd58","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/f63a6471-61ce-4923-b64d-d77430cccd58/ticks/636910482969957946","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:36.9957946Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"66bd530e-6736-44d0-af7d-6950b9b73bb6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66bd530e-6736-44d0-af7d-6950b9b73bb6/ticks/636910482948620977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","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":"2019-04-16T21:51:34.8620977Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"68f54e9d-074c-4f71-a105-aff6b7d15f21","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/68f54e9d-074c-4f71-a105-aff6b7d15f21/ticks/636910482928050514","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.6412528Z","submissionTimestamp":"2019-04-30T01:35:14.0753705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"4a83bca1-1b1e-4951-a086-4685bd6950ec","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/4a83bca1-1b1e-4951-a086-4685bd6950ec/ticks/636921848804421414","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"0303ed1f-be17-4b28-9b3e-db25c5ad9bcc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:40.4421414Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"f46d00cb-75f6-40ed-9c50-95f70ae2ccb9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/f46d00cb-75f6-40ed-9c50-95f70ae2ccb9/ticks/636921848802271689","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:40.2271689Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"90401be0-1f25-4682-8155-26d308beb0b4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/90401be0-1f25-4682-8155-26d308beb0b4/ticks/636921848778431585","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8431585Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"8f4bd0b2-0696-44dc-abd4-c26010d6ddd3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/8f4bd0b2-0696-44dc-abd4-c26010d6ddd3/ticks/636921848778017467","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"00989d30-7a74-42ba-9f3b-a3c22b6a3e3c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8017467Z","submissionTimestamp":"2019-04-30T01:34:52.0708832Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"b5c107f2-4171-4b61-8562-187f1210c49d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/b5c107f2-4171-4b61-8562-187f1210c49d/ticks/636921848769134515","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"0f15d50a-0ce5-4158-94c9-18ef8e039dc9","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8d693512-ff1c-4c20-a33b-9ff7ca9c4a69\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"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_vm_custom_image000001/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":"2019-04-30T01:34:36.9134515Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e90536df-341d-4963-a03d-bb079be707c8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e90536df-341d-4963-a03d-bb079be707c8/ticks/636921848752384320","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:35.238432Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"93784e91-807e-464f-92d7-ac93755984f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/93784e91-807e-464f-92d7-ac93755984f3/ticks/636921848721091104","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ae2a9938-2294-4cae-b034-0b8838ed0b60","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"c5a031e4-4533-40c6-bf8c-f5b35762f534\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"38dda0c1-e46f-48cb-90e1-998e0dafb7d3\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:32.1091104Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"66dce5b6-d5e1-49a0-80e8-99846c7516d4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66dce5b6-d5e1-49a0-80e8-99846c7516d4/ticks/636921848718941033","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:31.8941033Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"eef91927-6f3c-4853-ad38-a397f98e26d8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/eef91927-6f3c-4853-ad38-a397f98e26d8/ticks/636921848688850024","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","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":"2019-04-30T01:34:28.8850024Z","submissionTimestamp":"2019-04-30T01:34:41.0721684Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"3940343b-3b2e-457d-bf71-6f94508a5f44","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/3940343b-3b2e-457d-bf71-6f94508a5f44/ticks/636921848670913977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:32.8050514Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278/ticks/636910482896250399","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:29.6250399Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:27.0913977Z","submissionTimestamp":"2019-04-30T01:34:46.1181772Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1/ticks/636921848636863954","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:23.6863954Z","submissionTimestamp":"2019-04-30T01:34:46.1171765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '48904' + - '48928' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:52:52 GMT + - Tue, 30 Apr 2019 01:35:47 GMT expires: - '-1' pragma: @@ -8201,6 +8912,49 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --admin-username --admin-password --authentication-type + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450188200742743?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: + - Tue, 30 Apr 2019 01:35:57 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: @@ -8217,65 +8971,65 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A53%3A01Z%20and%20correlationId%20eq%20%27d52affa7-cbd5-4f3b-b654-be73e726350d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A35%3A58Z%20and%20correlationId%20eq%20%27c40eb337-e811-4a7d-9d7b-1192375c177d%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"7547b240-ba29-4952-8f7c-29902b2de542","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/7547b240-ba29-4952-8f7c-29902b2de542/ticks/636910483192613002","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"144a256e-c210-42bc-b045-1e3438c78f07","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8/ticks/636921848926412528","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"912e7d07-fee1-4887-a0a3-30277e9313dd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:59.2613002Z","submissionTimestamp":"2019-04-16T21:52:24.0757991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"60dd5c05-70ce-4f00-bdf7-ad0b10727cbe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/60dd5c05-70ce-4f00-bdf7-ad0b10727cbe/ticks/636910483051976537","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"54d40adc-3449-4930-aee8-b783c1f6deaa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:45.1976537Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"86be90ac-e043-46f9-85aa-66c732c3e57a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/86be90ac-e043-46f9-85aa-66c732c3e57a/ticks/636910483049922056","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:44.9922056Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"db4f58f8-6c87-489a-a9b5-c509f6b7f9e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/db4f58f8-6c87-489a-a9b5-c509f6b7f9e9/ticks/636910483028822168","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.8822168Z","submissionTimestamp":"2019-04-16T21:52:01.1173308Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"2fc62f84-519c-4b51-a72d-bd35339b968e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/2fc62f84-519c-4b51-a72d-bd35339b968e/ticks/636910483024464810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"37098e3f-0c3e-4b4a-8b00-34bfc2a36b3e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.446481Z","submissionTimestamp":"2019-04-16T21:52:08.0950865Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"34be5d16-ce62-4c78-88e9-164c70c6b5ea","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/34be5d16-ce62-4c78-88e9-164c70c6b5ea/ticks/636910483020171857","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"9cefb990-b813-4ab5-b1d1-f560c934401d","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7fe7d98e-acf0-41d5-9b5e-6b7d55273419\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"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_vm_custom_image000001/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":"2019-04-16T21:51:42.0171857Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"e32b0a36-15cc-4c15-9601-d9d51d17a181","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e32b0a36-15cc-4c15-9601-d9d51d17a181/ticks/636910483003022336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:40.3022336Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"cc98c964-b213-441a-bc8d-705c0b904e4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/cc98c964-b213-441a-bc8d-705c0b904e4b/ticks/636910482972058229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"97baf143-9462-453d-a1bf-7c7564fd8f76","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"70c0da7a-372c-441f-ac64-0988e4f4fcb4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"383c3579-3b7d-41eb-87d2-876549be962c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:37.2058229Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"f63a6471-61ce-4923-b64d-d77430cccd58","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/f63a6471-61ce-4923-b64d-d77430cccd58/ticks/636910482969957946","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:36.9957946Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"66bd530e-6736-44d0-af7d-6950b9b73bb6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66bd530e-6736-44d0-af7d-6950b9b73bb6/ticks/636910482948620977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","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":"2019-04-16T21:51:34.8620977Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"68f54e9d-074c-4f71-a105-aff6b7d15f21","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/68f54e9d-074c-4f71-a105-aff6b7d15f21/ticks/636910482928050514","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.6412528Z","submissionTimestamp":"2019-04-30T01:35:14.0753705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"4a83bca1-1b1e-4951-a086-4685bd6950ec","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/4a83bca1-1b1e-4951-a086-4685bd6950ec/ticks/636921848804421414","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"0303ed1f-be17-4b28-9b3e-db25c5ad9bcc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:40.4421414Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"f46d00cb-75f6-40ed-9c50-95f70ae2ccb9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/f46d00cb-75f6-40ed-9c50-95f70ae2ccb9/ticks/636921848802271689","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:40.2271689Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"90401be0-1f25-4682-8155-26d308beb0b4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/90401be0-1f25-4682-8155-26d308beb0b4/ticks/636921848778431585","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8431585Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"8f4bd0b2-0696-44dc-abd4-c26010d6ddd3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/8f4bd0b2-0696-44dc-abd4-c26010d6ddd3/ticks/636921848778017467","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"00989d30-7a74-42ba-9f3b-a3c22b6a3e3c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8017467Z","submissionTimestamp":"2019-04-30T01:34:52.0708832Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"b5c107f2-4171-4b61-8562-187f1210c49d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/b5c107f2-4171-4b61-8562-187f1210c49d/ticks/636921848769134515","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"0f15d50a-0ce5-4158-94c9-18ef8e039dc9","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8d693512-ff1c-4c20-a33b-9ff7ca9c4a69\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"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_vm_custom_image000001/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":"2019-04-30T01:34:36.9134515Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e90536df-341d-4963-a03d-bb079be707c8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e90536df-341d-4963-a03d-bb079be707c8/ticks/636921848752384320","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:35.238432Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"93784e91-807e-464f-92d7-ac93755984f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/93784e91-807e-464f-92d7-ac93755984f3/ticks/636921848721091104","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ae2a9938-2294-4cae-b034-0b8838ed0b60","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"c5a031e4-4533-40c6-bf8c-f5b35762f534\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"38dda0c1-e46f-48cb-90e1-998e0dafb7d3\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:32.1091104Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"66dce5b6-d5e1-49a0-80e8-99846c7516d4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66dce5b6-d5e1-49a0-80e8-99846c7516d4/ticks/636921848718941033","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:31.8941033Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"eef91927-6f3c-4853-ad38-a397f98e26d8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/eef91927-6f3c-4853-ad38-a397f98e26d8/ticks/636921848688850024","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","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":"2019-04-30T01:34:28.8850024Z","submissionTimestamp":"2019-04-30T01:34:41.0721684Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"3940343b-3b2e-457d-bf71-6f94508a5f44","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/3940343b-3b2e-457d-bf71-6f94508a5f44/ticks/636921848670913977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:32.8050514Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278/ticks/636910482896250399","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:29.6250399Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:27.0913977Z","submissionTimestamp":"2019-04-30T01:34:46.1181772Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1/ticks/636921848636863954","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:23.6863954Z","submissionTimestamp":"2019-04-30T01:34:46.1171765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '48904' + - '48928' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:03 GMT + - Tue, 30 Apr 2019 01:35:58 GMT expires: - '-1' pragma: @@ -8309,65 +9063,65 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A53%3A12Z%20and%20correlationId%20eq%20%27d52affa7-cbd5-4f3b-b654-be73e726350d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A08Z%20and%20correlationId%20eq%20%27c40eb337-e811-4a7d-9d7b-1192375c177d%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"7547b240-ba29-4952-8f7c-29902b2de542","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/7547b240-ba29-4952-8f7c-29902b2de542/ticks/636910483192613002","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"144a256e-c210-42bc-b045-1e3438c78f07","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8/ticks/636921848926412528","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"912e7d07-fee1-4887-a0a3-30277e9313dd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:59.2613002Z","submissionTimestamp":"2019-04-16T21:52:24.0757991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"60dd5c05-70ce-4f00-bdf7-ad0b10727cbe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/60dd5c05-70ce-4f00-bdf7-ad0b10727cbe/ticks/636910483051976537","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"54d40adc-3449-4930-aee8-b783c1f6deaa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:45.1976537Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"86be90ac-e043-46f9-85aa-66c732c3e57a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/86be90ac-e043-46f9-85aa-66c732c3e57a/ticks/636910483049922056","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:44.9922056Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"db4f58f8-6c87-489a-a9b5-c509f6b7f9e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/db4f58f8-6c87-489a-a9b5-c509f6b7f9e9/ticks/636910483028822168","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.8822168Z","submissionTimestamp":"2019-04-16T21:52:01.1173308Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"2fc62f84-519c-4b51-a72d-bd35339b968e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/2fc62f84-519c-4b51-a72d-bd35339b968e/ticks/636910483024464810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"37098e3f-0c3e-4b4a-8b00-34bfc2a36b3e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.446481Z","submissionTimestamp":"2019-04-16T21:52:08.0950865Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"34be5d16-ce62-4c78-88e9-164c70c6b5ea","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/34be5d16-ce62-4c78-88e9-164c70c6b5ea/ticks/636910483020171857","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"9cefb990-b813-4ab5-b1d1-f560c934401d","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7fe7d98e-acf0-41d5-9b5e-6b7d55273419\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"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_vm_custom_image000001/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":"2019-04-16T21:51:42.0171857Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"e32b0a36-15cc-4c15-9601-d9d51d17a181","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e32b0a36-15cc-4c15-9601-d9d51d17a181/ticks/636910483003022336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:40.3022336Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"cc98c964-b213-441a-bc8d-705c0b904e4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/cc98c964-b213-441a-bc8d-705c0b904e4b/ticks/636910482972058229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"97baf143-9462-453d-a1bf-7c7564fd8f76","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"70c0da7a-372c-441f-ac64-0988e4f4fcb4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"383c3579-3b7d-41eb-87d2-876549be962c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:37.2058229Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"f63a6471-61ce-4923-b64d-d77430cccd58","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/f63a6471-61ce-4923-b64d-d77430cccd58/ticks/636910482969957946","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:36.9957946Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"66bd530e-6736-44d0-af7d-6950b9b73bb6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66bd530e-6736-44d0-af7d-6950b9b73bb6/ticks/636910482948620977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","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":"2019-04-16T21:51:34.8620977Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"68f54e9d-074c-4f71-a105-aff6b7d15f21","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/68f54e9d-074c-4f71-a105-aff6b7d15f21/ticks/636910482928050514","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.6412528Z","submissionTimestamp":"2019-04-30T01:35:14.0753705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"4a83bca1-1b1e-4951-a086-4685bd6950ec","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/4a83bca1-1b1e-4951-a086-4685bd6950ec/ticks/636921848804421414","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"0303ed1f-be17-4b28-9b3e-db25c5ad9bcc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:40.4421414Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"f46d00cb-75f6-40ed-9c50-95f70ae2ccb9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/f46d00cb-75f6-40ed-9c50-95f70ae2ccb9/ticks/636921848802271689","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:40.2271689Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"90401be0-1f25-4682-8155-26d308beb0b4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/90401be0-1f25-4682-8155-26d308beb0b4/ticks/636921848778431585","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8431585Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"8f4bd0b2-0696-44dc-abd4-c26010d6ddd3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/8f4bd0b2-0696-44dc-abd4-c26010d6ddd3/ticks/636921848778017467","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"00989d30-7a74-42ba-9f3b-a3c22b6a3e3c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8017467Z","submissionTimestamp":"2019-04-30T01:34:52.0708832Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"b5c107f2-4171-4b61-8562-187f1210c49d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/b5c107f2-4171-4b61-8562-187f1210c49d/ticks/636921848769134515","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"0f15d50a-0ce5-4158-94c9-18ef8e039dc9","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8d693512-ff1c-4c20-a33b-9ff7ca9c4a69\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"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_vm_custom_image000001/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":"2019-04-30T01:34:36.9134515Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e90536df-341d-4963-a03d-bb079be707c8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e90536df-341d-4963-a03d-bb079be707c8/ticks/636921848752384320","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:35.238432Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"93784e91-807e-464f-92d7-ac93755984f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/93784e91-807e-464f-92d7-ac93755984f3/ticks/636921848721091104","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ae2a9938-2294-4cae-b034-0b8838ed0b60","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"c5a031e4-4533-40c6-bf8c-f5b35762f534\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"38dda0c1-e46f-48cb-90e1-998e0dafb7d3\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:32.1091104Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"66dce5b6-d5e1-49a0-80e8-99846c7516d4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66dce5b6-d5e1-49a0-80e8-99846c7516d4/ticks/636921848718941033","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:31.8941033Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"eef91927-6f3c-4853-ad38-a397f98e26d8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/eef91927-6f3c-4853-ad38-a397f98e26d8/ticks/636921848688850024","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","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":"2019-04-30T01:34:28.8850024Z","submissionTimestamp":"2019-04-30T01:34:41.0721684Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"3940343b-3b2e-457d-bf71-6f94508a5f44","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/3940343b-3b2e-457d-bf71-6f94508a5f44/ticks/636921848670913977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:32.8050514Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278/ticks/636910482896250399","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:29.6250399Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:27.0913977Z","submissionTimestamp":"2019-04-30T01:34:46.1181772Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1/ticks/636921848636863954","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:23.6863954Z","submissionTimestamp":"2019-04-30T01:34:46.1171765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '48904' + - '48928' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:13 GMT + - Tue, 30 Apr 2019 01:36:08 GMT expires: - '-1' pragma: @@ -8401,65 +9155,69 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A53%3A22Z%20and%20correlationId%20eq%20%27d52affa7-cbd5-4f3b-b654-be73e726350d%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A19Z%20and%20correlationId%20eq%20%27c40eb337-e811-4a7d-9d7b-1192375c177d%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"7547b240-ba29-4952-8f7c-29902b2de542","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/7547b240-ba29-4952-8f7c-29902b2de542/ticks/636910483192613002","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"144a256e-c210-42bc-b045-1e3438c78f07","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"6e3b1149-dc7d-4865-ac7d-89ad784ec7a1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/6e3b1149-dc7d-4865-ac7d-89ad784ec7a1/ticks/636921849545025188","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"a062cecc-4fd5-49af-818b-72fa937357d6","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:35:54.5025188Z","submissionTimestamp":"2019-04-30T01:36:10.1613389Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/e763e1e4-0ff0-4e7a-982f-6fe1b116c3f8/ticks/636921848926412528","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"912e7d07-fee1-4887-a0a3-30277e9313dd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:59.2613002Z","submissionTimestamp":"2019-04-16T21:52:24.0757991Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"60dd5c05-70ce-4f00-bdf7-ad0b10727cbe","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/60dd5c05-70ce-4f00-bdf7-ad0b10727cbe/ticks/636910483051976537","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"54d40adc-3449-4930-aee8-b783c1f6deaa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:45.1976537Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"86be90ac-e043-46f9-85aa-66c732c3e57a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/86be90ac-e043-46f9-85aa-66c732c3e57a/ticks/636910483049922056","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:44.9922056Z","submissionTimestamp":"2019-04-16T21:52:01.1183324Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"db4f58f8-6c87-489a-a9b5-c509f6b7f9e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2653b4ad-3199-4020-bec5-7c299552c73c","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/db4f58f8-6c87-489a-a9b5-c509f6b7f9e9/ticks/636910483028822168","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"2fef76fc-cc93-4d93-8c3b-e764e4331460","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.8822168Z","submissionTimestamp":"2019-04-16T21:52:01.1173308Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"2fc62f84-519c-4b51-a72d-bd35339b968e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/2fc62f84-519c-4b51-a72d-bd35339b968e/ticks/636910483024464810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"37098e3f-0c3e-4b4a-8b00-34bfc2a36b3e","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:42.446481Z","submissionTimestamp":"2019-04-16T21:52:08.0950865Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"34be5d16-ce62-4c78-88e9-164c70c6b5ea","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/34be5d16-ce62-4c78-88e9-164c70c6b5ea/ticks/636910483020171857","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"9cefb990-b813-4ab5-b1d1-f560c934401d","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7fe7d98e-acf0-41d5-9b5e-6b7d55273419\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"4b879118-d339-4c0f-95f6-4a767fb5d4d4\\\"\",\"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_vm_custom_image000001/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":"2019-04-16T21:51:42.0171857Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","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_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"e32b0a36-15cc-4c15-9601-d9d51d17a181","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fa822287-fe60-459a-95a2-b9d640e71671","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e32b0a36-15cc-4c15-9601-d9d51d17a181/ticks/636910483003022336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"ce09eba3-dd9e-438c-a32b-9d98712b822c","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:40.3022336Z","submissionTimestamp":"2019-04-16T21:52:01.1163296Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"cc98c964-b213-441a-bc8d-705c0b904e4b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/cc98c964-b213-441a-bc8d-705c0b904e4b/ticks/636910482972058229","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"97baf143-9462-453d-a1bf-7c7564fd8f76","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"70c0da7a-372c-441f-ac64-0988e4f4fcb4\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"383c3579-3b7d-41eb-87d2-876549be962c\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:37.2058229Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"f63a6471-61ce-4923-b64d-d77430cccd58","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/f63a6471-61ce-4923-b64d-d77430cccd58/ticks/636910482969957946","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:36.9957946Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"66bd530e-6736-44d0-af7d-6950b9b73bb6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"fcee64d2-1a68-4ca0-953a-835720f371be","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66bd530e-6736-44d0-af7d-6950b9b73bb6/ticks/636910482948620977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"38b8c8e3-091e-4911-a5ea-617e8bb98c01","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":"2019-04-16T21:51:34.8620977Z","submissionTimestamp":"2019-04-16T21:51:51.0903864Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"68f54e9d-074c-4f71-a105-aff6b7d15f21","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/68f54e9d-074c-4f71-a105-aff6b7d15f21/ticks/636910482928050514","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:52.6412528Z","submissionTimestamp":"2019-04-30T01:35:14.0753705Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"4a83bca1-1b1e-4951-a086-4685bd6950ec","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/4a83bca1-1b1e-4951-a086-4685bd6950ec/ticks/636921848804421414","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"0303ed1f-be17-4b28-9b3e-db25c5ad9bcc"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:40.4421414Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"f46d00cb-75f6-40ed-9c50-95f70ae2ccb9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/f46d00cb-75f6-40ed-9c50-95f70ae2ccb9/ticks/636921848802271689","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:40.2271689Z","submissionTimestamp":"2019-04-30T01:35:01.0627878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"90401be0-1f25-4682-8155-26d308beb0b4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"350dfa29-d29d-4171-b1a3-148e9b628dcc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/events/90401be0-1f25-4682-8155-26d308beb0b4/ticks/636921848778431585","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"f09cb07e-fcd9-49b1-bee6-a4c217fc36c0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8431585Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"8f4bd0b2-0696-44dc-abd4-c26010d6ddd3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/8f4bd0b2-0696-44dc-abd4-c26010d6ddd3/ticks/636921848778017467","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"00989d30-7a74-42ba-9f3b-a3c22b6a3e3c","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:37.8017467Z","submissionTimestamp":"2019-04-30T01:34:52.0708832Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"b5c107f2-4171-4b61-8562-187f1210c49d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/b5c107f2-4171-4b61-8562-187f1210c49d/ticks/636921848769134515","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"0f15d50a-0ce5-4158-94c9-18ef8e039dc9","responseBody":"{\"name\":\"vmss1LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"8d693512-ff1c-4c20-a33b-9ff7ca9c4a69\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss1LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss1LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\"etag\":\"W/\\\"30c97117-8f3e-4a25-8aa6-0550f70d32c1\\\"\",\"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_vm_custom_image000001/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":"2019-04-30T01:34:36.9134515Z","submissionTimestamp":"2019-04-30T01:34:51.1143044Z","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_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"e90536df-341d-4963-a03d-bb079be707c8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bb0a7f44-4e64-41cf-acfa-d0114ed98b86","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/events/e90536df-341d-4963-a03d-bb079be707c8/ticks/636921848752384320","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"be19d487-afe9-49a2-b419-5d6a39ef2c26","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_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:35.238432Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"93784e91-807e-464f-92d7-ac93755984f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/93784e91-807e-464f-92d7-ac93755984f3/ticks/636921848721091104","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ae2a9938-2294-4cae-b034-0b8838ed0b60","responseBody":"{\"name\":\"vmss1LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\",\"etag\":\"W/\\\"c5a031e4-4533-40c6-bf8c-f5b35762f534\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"38dda0c1-e46f-48cb-90e1-998e0dafb7d3\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:32.1091104Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"66dce5b6-d5e1-49a0-80e8-99846c7516d4","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/66dce5b6-d5e1-49a0-80e8-99846c7516d4/ticks/636921848718941033","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:31.8941033Z","submissionTimestamp":"2019-04-30T01:34:51.1133032Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"eef91927-6f3c-4853-ad38-a397f98e26d8","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"37a1f056-bddd-46c1-88a9-41edb005f10f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP/events/eef91927-6f3c-4853-ad38-a397f98e26d8/ticks/636921848688850024","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"5ab48032-f415-4f4f-9721-325acc082771","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":"2019-04-30T01:34:28.8850024Z","submissionTimestamp":"2019-04-30T01:34:41.0721684Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"3940343b-3b2e-457d-bf71-6f94508a5f44","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/3940343b-3b2e-457d-bf71-6f94508a5f44/ticks/636921848670913977","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:51:32.8050514Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","description":"","eventDataId":"4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c91cb8fa-6091-11e9-85be-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR/events/4db8bb95-2bd4-4dc2-9d5c-4f4c876e4278/ticks/636910482896250399","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:51:29.6250399Z","submissionTimestamp":"2019-04-16T21:51:55.0994662Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:34:27.0913977Z","submissionTimestamp":"2019-04-30T01:34:46.1181772Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","description":"","eventDataId":"9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"146fe7a6-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu/events/9e213a55-b4c3-47d8-ab8f-4b6c462cc3b1/ticks/636921848636863954","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:34:23.6863954Z","submissionTimestamp":"2019-04-30T01:34:46.1171765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '48904' + - '52579' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:23 GMT + - Tue, 30 Apr 2019 01:36:19 GMT expires: - '-1' pragma: @@ -8491,10 +9249,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461553941411023?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450188200742743?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -8506,7 +9264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:33 GMT + - Tue, 30 Apr 2019 01:36:27 GMT expires: - '-1' pragma: @@ -8534,22 +9292,22 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","name":"vmss_deploy_BnIWU6jfaPCdtQ13ilxSCT6Zq2A9syZR","properties":{"templateHash":"84825383489703083","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:53:20.1820943Z","duration":"PT1M48.845576S","correlationId":"d52affa7-cbd5-4f3b-b654-be73e726350d","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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1e8b2","adminUsername":"sdk-test-admin","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1e8b2Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1e8b2IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"uniqueId":"0abfeb6d-9273-4566-a605-4a9b81adc4ec"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","name":"vmss_deploy_unKJDtECush9f7fokHW0ODuaxzhJWTfu","properties":{"templateHash":"1416117052748613856","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:36:09.9255811Z","duration":"PT1M44.5222336S","correlationId":"c40eb337-e811-4a7d-9d7b-1192375c177d","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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss180e0","adminUsername":"sdk-test-admin","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-unmanaged"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss180e0Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss180e0IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"uniqueId":"acab235e-849b-42ed-8a55-6294fc527aa8"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '4661' + - '4664' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:34 GMT + - Tue, 30 Apr 2019 01:36:28 GMT expires: - '-1' pragma: @@ -8577,15 +9335,15 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:39:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -8594,7 +9352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:34 GMT + - Tue, 30 Apr 2019 01:36:28 GMT expires: - '-1' pragma: @@ -8677,13 +9435,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:35 GMT + - Tue, 30 Apr 2019 01:36:29 GMT etag: - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' expires: - - Tue, 16 Apr 2019 21:58:35 GMT + - Tue, 30 Apr 2019 01:41:29 GMT source-age: - - '27' + - '192' strict-transport-security: - max-age=31536000 vary: @@ -8693,21 +9451,21 @@ interactions: x-cache: - HIT x-cache-hits: - - '1' + - '2' x-content-type-options: - nosniff x-fastly-request-id: - - 1b071a08a6e2dd71c4afeb5fc2921266400468f9 + - 9ae2afe61e237d9f57ab0eefd2625e297b84d5dd x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - CAA6:4B1D:3E49C3:437C45:5CB64EC3 + - 9BE6:3825:E8927:1079FF:5CC7A5DC x-served-by: - - cache-sea1045-SEA + - cache-sjc3632-SJC x-timer: - - S1555451615.089687,VS0,VE1 + - S1556588189.313489,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -8727,12 +9485,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ @@ -8740,29 +9498,30 @@ interactions: \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ \ \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n\ \ \"lun\": 0,\r\n \"diskSizeGB\": 1,\r\n \"managedDisk\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n\ \ \"diskSizeGB\": 1,\r\n \"managedDisk\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ ,\r\n \"name\": \"img-from-managed\"\r\n}" headers: cache-control: - no-cache content-length: - - '2083' + - '2114' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:34 GMT + - Tue, 30 Apr 2019 01:36:29 GMT expires: - '-1' pragma: @@ -8779,7 +9538,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1761 + - Microsoft.Compute/GetImages3Min;345,Microsoft.Compute/GetImages30Min;1767 status: code: 200 message: OK @@ -8797,12 +9556,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ @@ -8810,29 +9569,30 @@ interactions: \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ \ \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n\ \ \"lun\": 0,\r\n \"diskSizeGB\": 1,\r\n \"managedDisk\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n\ \ \"diskSizeGB\": 1,\r\n \"managedDisk\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ ,\r\n \"name\": \"img-from-managed\"\r\n}" headers: cache-control: - no-cache content-length: - - '2083' + - '2114' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:34 GMT + - Tue, 30 Apr 2019 01:36:29 GMT expires: - '-1' pragma: @@ -8849,7 +9609,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1760 + - Microsoft.Compute/GetImages3Min;344,Microsoft.Compute/GetImages30Min;1766 status: code: 200 message: OK @@ -8867,8 +9627,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -8877,15 +9637,15 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm-unmanaged-diskVNET\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\"\ - ,\r\n \"etag\": \"W/\\\"8f46dff7-5ca2-4e08-b187-089ef35c649d\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"6b3042ac-6a1c-4df9-b440-e88adbc8ac49\\\"\",\r\ \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"382c9b1e-f655-4143-9105-f168416ce1b0\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3060738-9a22-4ee9-849f-24510f88bd58\"\ ,\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\": \"vm-unmanaged-diskSubnet\",\r\ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"\ - ,\r\n \"etag\": \"W/\\\"8f46dff7-5ca2-4e08-b187-089ef35c649d\\\"\ + ,\r\n \"etag\": \"W/\\\"6b3042ac-6a1c-4df9-b440-e88adbc8ac49\\\"\ \",\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\"\ @@ -8896,13 +9656,13 @@ interactions: \r\n },\r\n {\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\"\ \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss1e8b2Nic/ipConfigurations/vmss1e8b2IPConfig\"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss180e0Nic/ipConfigurations/vmss180e0IPConfig\"\ \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1e8b2Nic/ipConfigurations/vmss1e8b2IPConfig\"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss180e0Nic/ipConfigurations/vmss180e0IPConfig\"\ \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1e8b2Nic/ipConfigurations/vmss1e8b2IPConfig\"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss180e0Nic/ipConfigurations/vmss180e0IPConfig\"\ \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss1e8b2Nic/ipConfigurations/vmss1e8b2IPConfig\"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss180e0Nic/ipConfigurations/vmss180e0IPConfig\"\ \r\n }\r\n ]\r\n },\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\ \n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ @@ -8916,7 +9676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:35 GMT + - Tue, 30 Apr 2019 01:36:29 GMT expires: - '-1' pragma: @@ -8983,18 +9743,18 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","name":"vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","properties":{"templateHash":"17392023033365978636","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:53:39.1077455Z","duration":"PT1.1061901S","correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"fromimage2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"fromimage2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"fromimage2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","name":"vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","properties":{"templateHash":"13910964036566305955","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:36:33.1075527Z","duration":"PT1.1150945S","correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"fromimage2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"fromimage2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"fromimage2"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/operationStatuses/08586461552674760715?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/operationStatuses/08586450186934851661?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -9002,7 +9762,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:38 GMT + - Tue, 30 Apr 2019 01:36:33 GMT expires: - '-1' pragma: @@ -9012,7 +9772,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -9032,12 +9792,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A53%3A45Z%20and%20correlationId%20eq%20%277d3f540b-470b-4ce4-bd43-d59e47ebb397%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A40Z%20and%20correlationId%20eq%20%2793b5cab6-5b26-43eb-a6cf-ada34f238b55%27 response: body: string: '{"value":[]}' @@ -9049,7 +9809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:46 GMT + - Tue, 30 Apr 2019 01:36:40 GMT expires: - '-1' pragma: @@ -9083,12 +9843,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A53%3A55Z%20and%20correlationId%20eq%20%277d3f540b-470b-4ce4-bd43-d59e47ebb397%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A36%3A50Z%20and%20correlationId%20eq%20%2793b5cab6-5b26-43eb-a6cf-ada34f238b55%27 response: body: string: '{"value":[]}' @@ -9100,7 +9860,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:53:56 GMT + - Tue, 30 Apr 2019 01:36:50 GMT expires: - '-1' pragma: @@ -9134,79 +9894,36 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A54%3A06Z%20and%20correlationId%20eq%20%277d3f540b-470b-4ce4-bd43-d59e47ebb397%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"437a2d04-351b-42fd-98c4-406eb0c6b001","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/437a2d04-351b-42fd-98c4-406eb0c6b001/ticks/636910484274287639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"14d65866-fae8-4c47-84d2-825beaf90c07","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:47.4287639Z","submissionTimestamp":"2019-04-16T21:54:05.0868804Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3b038a54-9faa-41d2-bae1-3402efb05c44","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3b038a54-9faa-41d2-bae1-3402efb05c44/ticks/636910484270172119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7d85e3f1-bf86-48a3-8db3-754c2625752d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:47.0172119Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"19980733-e904-4b5b-9b2e-669b66248fec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/19980733-e904-4b5b-9b2e-669b66248fec/ticks/636910484269148329","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a51c2ecc-218b-4400-8d8c-97c483149e48"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:46.9148329Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"b3cbab49-6d4f-4da7-a1a2-a468bdefd821","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b3cbab49-6d4f-4da7-a1a2-a468bdefd821/ticks/636910484268344654","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.8344654Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3266f14e-f915-43cd-a482-3b79dadbb318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3266f14e-f915-43cd-a482-3b79dadbb318/ticks/636910484267022040","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.702204Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"60f786d0-d4b0-44ce-aed0-d5c019703ded","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/60f786d0-d4b0-44ce-aed0-d5c019703ded/ticks/636910484260534912","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.0534912Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"d823be24-8885-4d7d-976a-5123a3aa714d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/d823be24-8885-4d7d-976a-5123a3aa714d/ticks/636910484257484843","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"cea6aa71-2554-4063-8fda-bd93246dc764","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"574b6c72-3eb9-4b75-9e78-5e15c309476e\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.11\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:45.7484843Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"cbc0efe9-c7c5-4f81-9a07-1a8242c21493","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/cbc0efe9-c7c5-4f81-9a07-1a8242c21493/ticks/636910484250685137","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:45.0685137Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9c31acc3-cef0-459f-89f3-5d179f3177e7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/9c31acc3-cef0-459f-89f3-5d179f3177e7/ticks/636910484215734938","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4338bcdf-f334-4017-b696-e4a4d67213e4","responseBody":"{\"name\":\"fromimage2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"50d91257-f52d-44b9-954c-9d59d1bdea09\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.5734938Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"377928e5-3f04-4cf1-88f0-d67a39c60b7c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/377928e5-3f04-4cf1-88f0-d67a39c60b7c/ticks/636910484213384953","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"042e4aab-f76c-47cc-8de3-d82d5e3aa7ae","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"0b5424cc-7805-47b9-8b13-eccfea7f69b1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e9443943-1117-4136-9d55-02bcc9f2a19d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.3384953Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"4629b04c-a1a7-4a64-bf63-f1a3899dbacb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/4629b04c-a1a7-4a64-bf63-f1a3899dbacb/ticks/636910484212535136","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:41.2535136Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"14adf001-5242-4bc8-9c50-17a52a95409b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/14adf001-5242-4bc8-9c50-17a52a95409b/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"8657cc94-5289-44db-8afa-2e59c35c0c72","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/8657cc94-5289-44db-8afa-2e59c35c0c72/ticks/636910484193424922","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A37%3A01Z%20and%20correlationId%20eq%20%2793b5cab6-5b26-43eb-a6cf-ada34f238b55%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"067c234f-bf21-4584-824e-7463ceb8e120","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80b1034b-60a4-4b31-a18b-07fb39a61cf9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/067c234f-bf21-4584-824e-7463ceb8e120/ticks/636921849989185892","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"69d8ff89-2ff0-45af-bd99-822c7f803c1c","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.9185892Z","submissionTimestamp":"2019-04-30T01:36:59.0784678Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"e8143a94-229d-440c-85ba-7a76cc7340fc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/e8143a94-229d-440c-85ba-7a76cc7340fc/ticks/636921849932705086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:39.3424922Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"29599085-af26-4684-8c0e-3d5f88ecd771","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/29599085-af26-4684-8c0e-3d5f88ecd771/ticks/636910484163024831","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:36.3024831Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:33.2705086Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a75061a5-42b9-4abc-9af4-42c0e55b45f1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/a75061a5-42b9-4abc-9af4-42c0e55b45f1/ticks/636921849902505356","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:30.2505356Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '63618' + - '11564' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:54:07 GMT + - Tue, 30 Apr 2019 01:37:01 GMT expires: - '-1' pragma: @@ -9238,10 +9955,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461552674760715?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450186934851661?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -9253,7 +9970,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:54:09 GMT + - Tue, 30 Apr 2019 01:37:03 GMT expires: - '-1' pragma: @@ -9283,96 +10000,52 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A54%3A16Z%20and%20correlationId%20eq%20%277d3f540b-470b-4ce4-bd43-d59e47ebb397%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"2ec5c733-7f3c-4fe4-b4d7-161c830d48a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2ec5c733-7f3c-4fe4-b4d7-161c830d48a6/ticks/636910484372361855","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"16e41612-493a-42c4-acf3-53dc1b56cf4d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:57.2361855Z","submissionTimestamp":"2019-04-16T21:54:17.0818142Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"437a2d04-351b-42fd-98c4-406eb0c6b001","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/437a2d04-351b-42fd-98c4-406eb0c6b001/ticks/636910484274287639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"14d65866-fae8-4c47-84d2-825beaf90c07","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:47.4287639Z","submissionTimestamp":"2019-04-16T21:54:05.0868804Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3b038a54-9faa-41d2-bae1-3402efb05c44","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3b038a54-9faa-41d2-bae1-3402efb05c44/ticks/636910484270172119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7d85e3f1-bf86-48a3-8db3-754c2625752d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:47.0172119Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"a6d614a1-7c8d-45ec-ad92-52120497b743","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/a6d614a1-7c8d-45ec-ad92-52120497b743/ticks/636910484269971407","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"384bec5e-44be-4300-acde-c615bdf889fa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9971407Z","submissionTimestamp":"2019-04-16T21:54:08.1269754Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"bdb538fa-421e-4871-915d-0ab2cc66843f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/bdb538fa-421e-4871-915d-0ab2cc66843f/ticks/636910484269421983","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e51b1389-4cc4-4e15-ac61-84869a63d4e8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.9421983Z","submissionTimestamp":"2019-04-16T21:54:05.1372813Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"ec2d319b-c8d1-49f2-8042-b4a395ad21f5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/ec2d319b-c8d1-49f2-8042-b4a395ad21f5/ticks/636910484269353098","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"83c30964-ce44-4a83-bbe8-4fbdbed55c09"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9353098Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"19980733-e904-4b5b-9b2e-669b66248fec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/19980733-e904-4b5b-9b2e-669b66248fec/ticks/636910484269148329","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a51c2ecc-218b-4400-8d8c-97c483149e48"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:46.9148329Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"b3cbab49-6d4f-4da7-a1a2-a468bdefd821","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b3cbab49-6d4f-4da7-a1a2-a468bdefd821/ticks/636910484268344654","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.8344654Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f3d7509e-e347-4766-b0f2-e00cc221d723","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/f3d7509e-e347-4766-b0f2-e00cc221d723/ticks/636910484267365820","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.736582Z","submissionTimestamp":"2019-04-16T21:54:08.1259752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3266f14e-f915-43cd-a482-3b79dadbb318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3266f14e-f915-43cd-a482-3b79dadbb318/ticks/636910484267022040","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.702204Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f38b49be-8af6-49ab-bf05-9eb71efa5a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/f38b49be-8af6-49ab-bf05-9eb71efa5a49/ticks/636910484266553022","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.6553022Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"60f786d0-d4b0-44ce-aed0-d5c019703ded","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/60f786d0-d4b0-44ce-aed0-d5c019703ded/ticks/636910484260534912","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.0534912Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"d823be24-8885-4d7d-976a-5123a3aa714d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/d823be24-8885-4d7d-976a-5123a3aa714d/ticks/636910484257484843","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"cea6aa71-2554-4063-8fda-bd93246dc764","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"574b6c72-3eb9-4b75-9e78-5e15c309476e\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.11\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:45.7484843Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"cbc0efe9-c7c5-4f81-9a07-1a8242c21493","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/cbc0efe9-c7c5-4f81-9a07-1a8242c21493/ticks/636910484250685137","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:45.0685137Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9c31acc3-cef0-459f-89f3-5d179f3177e7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/9c31acc3-cef0-459f-89f3-5d179f3177e7/ticks/636910484215734938","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4338bcdf-f334-4017-b696-e4a4d67213e4","responseBody":"{\"name\":\"fromimage2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"50d91257-f52d-44b9-954c-9d59d1bdea09\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.5734938Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"377928e5-3f04-4cf1-88f0-d67a39c60b7c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/377928e5-3f04-4cf1-88f0-d67a39c60b7c/ticks/636910484213384953","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"042e4aab-f76c-47cc-8de3-d82d5e3aa7ae","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"0b5424cc-7805-47b9-8b13-eccfea7f69b1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e9443943-1117-4136-9d55-02bcc9f2a19d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.3384953Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"4629b04c-a1a7-4a64-bf63-f1a3899dbacb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/4629b04c-a1a7-4a64-bf63-f1a3899dbacb/ticks/636910484212535136","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:41.2535136Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"14adf001-5242-4bc8-9c50-17a52a95409b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/14adf001-5242-4bc8-9c50-17a52a95409b/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"8657cc94-5289-44db-8afa-2e59c35c0c72","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/8657cc94-5289-44db-8afa-2e59c35c0c72/ticks/636910484193424922","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A37%3A11Z%20and%20correlationId%20eq%20%2793b5cab6-5b26-43eb-a6cf-ada34f238b55%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2a32054c-84d6-4b19-84c0-1dbfe4510c03","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2a32054c-84d6-4b19-84c0-1dbfe4510c03/ticks/636921850090074564","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:49.0074564Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b543df9b-cf47-439e-9396-480359ec1330","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/b543df9b-cf47-439e-9396-480359ec1330/ticks/636921850078252345","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0407a496-aab3-4558-9301-d6f78b43c66f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.8252345Z","submissionTimestamp":"2019-04-30T01:37:09.0722251Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"69eff86c-f61d-46ff-913d-fea9cbc3f31e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/69eff86c-f61d-46ff-913d-fea9cbc3f31e/ticks/636921850072568648","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29bcafcc-76c5-4781-b3bb-aff95b0f9500","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.2568648Z","submissionTimestamp":"2019-04-30T01:37:07.0675289Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"ecdec5ab-25b0-4bc5-8565-a7135e2dd00e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/ecdec5ab-25b0-4bc5-8565-a7135e2dd00e/ticks/636921850023391299","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0708f791-4c2f-4a70-9700-af802872308d","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"b7d817ca-a628-4887-92c9-271d8ed1e91d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31fd85d8-e721-4e27-b9e9-8b3cb3eb2382\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:42.3391299Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"0329174b-1ac3-4966-9ee9-863ffab47f8c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/0329174b-1ac3-4966-9ee9-863ffab47f8c/ticks/636921849989885480","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.988548Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"067c234f-bf21-4584-824e-7463ceb8e120","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80b1034b-60a4-4b31-a18b-07fb39a61cf9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/067c234f-bf21-4584-824e-7463ceb8e120/ticks/636921849989185892","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"69d8ff89-2ff0-45af-bd99-822c7f803c1c","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.9185892Z","submissionTimestamp":"2019-04-30T01:36:59.0784678Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"e8143a94-229d-440c-85ba-7a76cc7340fc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/e8143a94-229d-440c-85ba-7a76cc7340fc/ticks/636921849932705086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:39.3424922Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"29599085-af26-4684-8c0e-3d5f88ecd771","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/29599085-af26-4684-8c0e-3d5f88ecd771/ticks/636910484163024831","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:36.3024831Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:33.2705086Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a75061a5-42b9-4abc-9af4-42c0e55b45f1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/a75061a5-42b9-4abc-9af4-42c0e55b45f1/ticks/636921849902505356","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:30.2505356Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '82348' + - '30591' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:54:17 GMT + - Tue, 30 Apr 2019 01:37:11 GMT expires: - '-1' pragma: @@ -9406,96 +10079,62 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A54%3A27Z%20and%20correlationId%20eq%20%277d3f540b-470b-4ce4-bd43-d59e47ebb397%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"2ec5c733-7f3c-4fe4-b4d7-161c830d48a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2ec5c733-7f3c-4fe4-b4d7-161c830d48a6/ticks/636910484372361855","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"16e41612-493a-42c4-acf3-53dc1b56cf4d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:57.2361855Z","submissionTimestamp":"2019-04-16T21:54:17.0818142Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"437a2d04-351b-42fd-98c4-406eb0c6b001","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/437a2d04-351b-42fd-98c4-406eb0c6b001/ticks/636910484274287639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"14d65866-fae8-4c47-84d2-825beaf90c07","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:47.4287639Z","submissionTimestamp":"2019-04-16T21:54:05.0868804Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3b038a54-9faa-41d2-bae1-3402efb05c44","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3b038a54-9faa-41d2-bae1-3402efb05c44/ticks/636910484270172119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7d85e3f1-bf86-48a3-8db3-754c2625752d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:47.0172119Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"a6d614a1-7c8d-45ec-ad92-52120497b743","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/a6d614a1-7c8d-45ec-ad92-52120497b743/ticks/636910484269971407","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"384bec5e-44be-4300-acde-c615bdf889fa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9971407Z","submissionTimestamp":"2019-04-16T21:54:08.1269754Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"bdb538fa-421e-4871-915d-0ab2cc66843f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/bdb538fa-421e-4871-915d-0ab2cc66843f/ticks/636910484269421983","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e51b1389-4cc4-4e15-ac61-84869a63d4e8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.9421983Z","submissionTimestamp":"2019-04-16T21:54:05.1372813Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"ec2d319b-c8d1-49f2-8042-b4a395ad21f5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/ec2d319b-c8d1-49f2-8042-b4a395ad21f5/ticks/636910484269353098","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"83c30964-ce44-4a83-bbe8-4fbdbed55c09"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9353098Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"19980733-e904-4b5b-9b2e-669b66248fec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/19980733-e904-4b5b-9b2e-669b66248fec/ticks/636910484269148329","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a51c2ecc-218b-4400-8d8c-97c483149e48"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:46.9148329Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"b3cbab49-6d4f-4da7-a1a2-a468bdefd821","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b3cbab49-6d4f-4da7-a1a2-a468bdefd821/ticks/636910484268344654","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.8344654Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f3d7509e-e347-4766-b0f2-e00cc221d723","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/f3d7509e-e347-4766-b0f2-e00cc221d723/ticks/636910484267365820","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.736582Z","submissionTimestamp":"2019-04-16T21:54:08.1259752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3266f14e-f915-43cd-a482-3b79dadbb318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3266f14e-f915-43cd-a482-3b79dadbb318/ticks/636910484267022040","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.702204Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f38b49be-8af6-49ab-bf05-9eb71efa5a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/f38b49be-8af6-49ab-bf05-9eb71efa5a49/ticks/636910484266553022","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.6553022Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"60f786d0-d4b0-44ce-aed0-d5c019703ded","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/60f786d0-d4b0-44ce-aed0-d5c019703ded/ticks/636910484260534912","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.0534912Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"d823be24-8885-4d7d-976a-5123a3aa714d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/d823be24-8885-4d7d-976a-5123a3aa714d/ticks/636910484257484843","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"cea6aa71-2554-4063-8fda-bd93246dc764","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"574b6c72-3eb9-4b75-9e78-5e15c309476e\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.11\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:45.7484843Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"cbc0efe9-c7c5-4f81-9a07-1a8242c21493","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/cbc0efe9-c7c5-4f81-9a07-1a8242c21493/ticks/636910484250685137","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:45.0685137Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9c31acc3-cef0-459f-89f3-5d179f3177e7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/9c31acc3-cef0-459f-89f3-5d179f3177e7/ticks/636910484215734938","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4338bcdf-f334-4017-b696-e4a4d67213e4","responseBody":"{\"name\":\"fromimage2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"50d91257-f52d-44b9-954c-9d59d1bdea09\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.5734938Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"377928e5-3f04-4cf1-88f0-d67a39c60b7c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/377928e5-3f04-4cf1-88f0-d67a39c60b7c/ticks/636910484213384953","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"042e4aab-f76c-47cc-8de3-d82d5e3aa7ae","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"0b5424cc-7805-47b9-8b13-eccfea7f69b1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e9443943-1117-4136-9d55-02bcc9f2a19d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.3384953Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"4629b04c-a1a7-4a64-bf63-f1a3899dbacb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/4629b04c-a1a7-4a64-bf63-f1a3899dbacb/ticks/636910484212535136","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:41.2535136Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"14adf001-5242-4bc8-9c50-17a52a95409b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/14adf001-5242-4bc8-9c50-17a52a95409b/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"8657cc94-5289-44db-8afa-2e59c35c0c72","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/8657cc94-5289-44db-8afa-2e59c35c0c72/ticks/636910484193424922","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A37%3A22Z%20and%20correlationId%20eq%20%2793b5cab6-5b26-43eb-a6cf-ada34f238b55%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"d7ad154c-07e2-4ac9-865b-74c911f218f1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/d7ad154c-07e2-4ac9-865b-74c911f218f1/ticks/636921850105864957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"95fa9211-2136-416e-bb63-7e19ea406777"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.5864957Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"7881ce0c-59a9-4839-a3a0-aab856704e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/7881ce0c-59a9-4839-a3a0-aab856704e95/ticks/636921850104416183","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0df2b5b-a6fa-404c-85b3-bd31f3529170"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.4416183Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3/ticks/636921850103164947","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.3164947Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"88bba827-2104-45e8-bf49-9b1a25c59973","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/88bba827-2104-45e8-bf49-9b1a25c59973/ticks/636921850102416119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.2416119Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2a32054c-84d6-4b19-84c0-1dbfe4510c03","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2a32054c-84d6-4b19-84c0-1dbfe4510c03/ticks/636921850090074564","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:49.0074564Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b543df9b-cf47-439e-9396-480359ec1330","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/b543df9b-cf47-439e-9396-480359ec1330/ticks/636921850078252345","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0407a496-aab3-4558-9301-d6f78b43c66f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.8252345Z","submissionTimestamp":"2019-04-30T01:37:09.0722251Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"69eff86c-f61d-46ff-913d-fea9cbc3f31e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/69eff86c-f61d-46ff-913d-fea9cbc3f31e/ticks/636921850072568648","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29bcafcc-76c5-4781-b3bb-aff95b0f9500","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.2568648Z","submissionTimestamp":"2019-04-30T01:37:07.0675289Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"ecdec5ab-25b0-4bc5-8565-a7135e2dd00e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/ecdec5ab-25b0-4bc5-8565-a7135e2dd00e/ticks/636921850023391299","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0708f791-4c2f-4a70-9700-af802872308d","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"b7d817ca-a628-4887-92c9-271d8ed1e91d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31fd85d8-e721-4e27-b9e9-8b3cb3eb2382\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:42.3391299Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"0329174b-1ac3-4966-9ee9-863ffab47f8c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/0329174b-1ac3-4966-9ee9-863ffab47f8c/ticks/636921849989885480","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.988548Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"067c234f-bf21-4584-824e-7463ceb8e120","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80b1034b-60a4-4b31-a18b-07fb39a61cf9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/067c234f-bf21-4584-824e-7463ceb8e120/ticks/636921849989185892","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"69d8ff89-2ff0-45af-bd99-822c7f803c1c","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.9185892Z","submissionTimestamp":"2019-04-30T01:36:59.0784678Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"e8143a94-229d-440c-85ba-7a76cc7340fc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/e8143a94-229d-440c-85ba-7a76cc7340fc/ticks/636921849932705086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:39.3424922Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"29599085-af26-4684-8c0e-3d5f88ecd771","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/29599085-af26-4684-8c0e-3d5f88ecd771/ticks/636910484163024831","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:36.3024831Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:33.2705086Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a75061a5-42b9-4abc-9af4-42c0e55b45f1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/a75061a5-42b9-4abc-9af4-42c0e55b45f1/ticks/636921849902505356","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:30.2505356Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '82348' + - '42161' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:54:28 GMT + - Tue, 30 Apr 2019 01:37:21 GMT expires: - '-1' pragma: @@ -9529,96 +10168,78 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A54%3A38Z%20and%20correlationId%20eq%20%277d3f540b-470b-4ce4-bd43-d59e47ebb397%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A37%3A32Z%20and%20correlationId%20eq%20%2793b5cab6-5b26-43eb-a6cf-ada34f238b55%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"2ec5c733-7f3c-4fe4-b4d7-161c830d48a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2ec5c733-7f3c-4fe4-b4d7-161c830d48a6/ticks/636910484372361855","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"16e41612-493a-42c4-acf3-53dc1b56cf4d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"aa7ad584-d69e-4db6-9bd5-8b69142efe95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/aa7ad584-d69e-4db6-9bd5-8b69142efe95/ticks/636921850225799487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"340a75cc-540e-41b6-a435-d145047288dc","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:57.2361855Z","submissionTimestamp":"2019-04-16T21:54:17.0818142Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"437a2d04-351b-42fd-98c4-406eb0c6b001","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/437a2d04-351b-42fd-98c4-406eb0c6b001/ticks/636910484274287639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"14d65866-fae8-4c47-84d2-825beaf90c07","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:47.4287639Z","submissionTimestamp":"2019-04-16T21:54:05.0868804Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3b038a54-9faa-41d2-bae1-3402efb05c44","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3b038a54-9faa-41d2-bae1-3402efb05c44/ticks/636910484270172119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7d85e3f1-bf86-48a3-8db3-754c2625752d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:47.0172119Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"a6d614a1-7c8d-45ec-ad92-52120497b743","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/a6d614a1-7c8d-45ec-ad92-52120497b743/ticks/636910484269971407","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"384bec5e-44be-4300-acde-c615bdf889fa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9971407Z","submissionTimestamp":"2019-04-16T21:54:08.1269754Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"bdb538fa-421e-4871-915d-0ab2cc66843f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/bdb538fa-421e-4871-915d-0ab2cc66843f/ticks/636910484269421983","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e51b1389-4cc4-4e15-ac61-84869a63d4e8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.9421983Z","submissionTimestamp":"2019-04-16T21:54:05.1372813Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"ec2d319b-c8d1-49f2-8042-b4a395ad21f5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/ec2d319b-c8d1-49f2-8042-b4a395ad21f5/ticks/636910484269353098","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"83c30964-ce44-4a83-bbe8-4fbdbed55c09"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9353098Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"19980733-e904-4b5b-9b2e-669b66248fec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/19980733-e904-4b5b-9b2e-669b66248fec/ticks/636910484269148329","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a51c2ecc-218b-4400-8d8c-97c483149e48"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:46.9148329Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"b3cbab49-6d4f-4da7-a1a2-a468bdefd821","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b3cbab49-6d4f-4da7-a1a2-a468bdefd821/ticks/636910484268344654","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.8344654Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f3d7509e-e347-4766-b0f2-e00cc221d723","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/f3d7509e-e347-4766-b0f2-e00cc221d723/ticks/636910484267365820","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.736582Z","submissionTimestamp":"2019-04-16T21:54:08.1259752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3266f14e-f915-43cd-a482-3b79dadbb318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3266f14e-f915-43cd-a482-3b79dadbb318/ticks/636910484267022040","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.702204Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f38b49be-8af6-49ab-bf05-9eb71efa5a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/f38b49be-8af6-49ab-bf05-9eb71efa5a49/ticks/636910484266553022","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.6553022Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"60f786d0-d4b0-44ce-aed0-d5c019703ded","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/60f786d0-d4b0-44ce-aed0-d5c019703ded/ticks/636910484260534912","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.0534912Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"d823be24-8885-4d7d-976a-5123a3aa714d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/d823be24-8885-4d7d-976a-5123a3aa714d/ticks/636910484257484843","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"cea6aa71-2554-4063-8fda-bd93246dc764","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"574b6c72-3eb9-4b75-9e78-5e15c309476e\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.11\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:45.7484843Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"cbc0efe9-c7c5-4f81-9a07-1a8242c21493","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/cbc0efe9-c7c5-4f81-9a07-1a8242c21493/ticks/636910484250685137","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:45.0685137Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9c31acc3-cef0-459f-89f3-5d179f3177e7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/9c31acc3-cef0-459f-89f3-5d179f3177e7/ticks/636910484215734938","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4338bcdf-f334-4017-b696-e4a4d67213e4","responseBody":"{\"name\":\"fromimage2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"50d91257-f52d-44b9-954c-9d59d1bdea09\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.5734938Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"377928e5-3f04-4cf1-88f0-d67a39c60b7c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/377928e5-3f04-4cf1-88f0-d67a39c60b7c/ticks/636910484213384953","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"042e4aab-f76c-47cc-8de3-d82d5e3aa7ae","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"0b5424cc-7805-47b9-8b13-eccfea7f69b1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e9443943-1117-4136-9d55-02bcc9f2a19d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.3384953Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"4629b04c-a1a7-4a64-bf63-f1a3899dbacb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/4629b04c-a1a7-4a64-bf63-f1a3899dbacb/ticks/636910484212535136","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:41.2535136Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"14adf001-5242-4bc8-9c50-17a52a95409b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/14adf001-5242-4bc8-9c50-17a52a95409b/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"8657cc94-5289-44db-8afa-2e59c35c0c72","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/8657cc94-5289-44db-8afa-2e59c35c0c72/ticks/636910484193424922","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:02.5799487Z","submissionTimestamp":"2019-04-30T01:37:25.0702572Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b1306944-8bee-404c-85c8-3a9de0010a63","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b1306944-8bee-404c-85c8-3a9de0010a63/ticks/636921850111680756","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"2f01a34a-19e3-44bb-80d9-8448d845a515"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:51.1680756Z","submissionTimestamp":"2019-04-30T01:37:19.1517181Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"508f5b33-a45e-4f6f-b953-53fba2034e61","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/508f5b33-a45e-4f6f-b953-53fba2034e61/ticks/636921850109580704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.9580704Z","submissionTimestamp":"2019-04-30T01:37:19.1517181Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"d7ad154c-07e2-4ac9-865b-74c911f218f1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/d7ad154c-07e2-4ac9-865b-74c911f218f1/ticks/636921850105864957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"95fa9211-2136-416e-bb63-7e19ea406777"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.5864957Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"7881ce0c-59a9-4839-a3a0-aab856704e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/7881ce0c-59a9-4839-a3a0-aab856704e95/ticks/636921850104416183","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0df2b5b-a6fa-404c-85b3-bd31f3529170"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.4416183Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3/ticks/636921850103164947","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.3164947Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"88bba827-2104-45e8-bf49-9b1a25c59973","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/88bba827-2104-45e8-bf49-9b1a25c59973/ticks/636921850102416119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.2416119Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2a32054c-84d6-4b19-84c0-1dbfe4510c03","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2a32054c-84d6-4b19-84c0-1dbfe4510c03/ticks/636921850090074564","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:49.0074564Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"3486736a-de9b-450f-8bef-c311d38af3bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b995a8d1-5103-4a26-9660-5ce4bd7c03b7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/3486736a-de9b-450f-8bef-c311d38af3bf/ticks/636921850081624453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4bd5e419-50cf-4e7b-8c2e-743b3f1b1626","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"b4c69492-8193-4de0-b978-ee1cb8b0a81a","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"9449d36b-ecb6-4a95-8461-0ecc31c7bcfe\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"075e2c91-64b4-4d8d-a2ce-506209d344f5\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"9449d36b-ecb6-4a95-8461-0ecc31c7bcfe\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.8\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:48.1624453Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b543df9b-cf47-439e-9396-480359ec1330","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/b543df9b-cf47-439e-9396-480359ec1330/ticks/636921850078252345","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0407a496-aab3-4558-9301-d6f78b43c66f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.8252345Z","submissionTimestamp":"2019-04-30T01:37:09.0722251Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"69eff86c-f61d-46ff-913d-fea9cbc3f31e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/69eff86c-f61d-46ff-913d-fea9cbc3f31e/ticks/636921850072568648","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29bcafcc-76c5-4781-b3bb-aff95b0f9500","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.2568648Z","submissionTimestamp":"2019-04-30T01:37:07.0675289Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"ecdec5ab-25b0-4bc5-8565-a7135e2dd00e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/ecdec5ab-25b0-4bc5-8565-a7135e2dd00e/ticks/636921850023391299","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0708f791-4c2f-4a70-9700-af802872308d","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"b7d817ca-a628-4887-92c9-271d8ed1e91d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31fd85d8-e721-4e27-b9e9-8b3cb3eb2382\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:42.3391299Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a381b05e-e0bf-4ccc-9c76-3c3702eb5e52","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/a381b05e-e0bf-4ccc-9c76-3c3702eb5e52/ticks/636921850021341583","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:42.1341583Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"0329174b-1ac3-4966-9ee9-863ffab47f8c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/0329174b-1ac3-4966-9ee9-863ffab47f8c/ticks/636921849989885480","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.988548Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"067c234f-bf21-4584-824e-7463ceb8e120","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80b1034b-60a4-4b31-a18b-07fb39a61cf9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/067c234f-bf21-4584-824e-7463ceb8e120/ticks/636921849989185892","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"69d8ff89-2ff0-45af-bd99-822c7f803c1c","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.9185892Z","submissionTimestamp":"2019-04-30T01:36:59.0784678Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"e8143a94-229d-440c-85ba-7a76cc7340fc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/e8143a94-229d-440c-85ba-7a76cc7340fc/ticks/636921849932705086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:39.3424922Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"29599085-af26-4684-8c0e-3d5f88ecd771","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/29599085-af26-4684-8c0e-3d5f88ecd771/ticks/636910484163024831","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:36.3024831Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:33.2705086Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a75061a5-42b9-4abc-9af4-42c0e55b45f1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/a75061a5-42b9-4abc-9af4-42c0e55b45f1/ticks/636921849902505356","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:30.2505356Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '82348' + - '62360' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:54:39 GMT + - Tue, 30 Apr 2019 01:37:33 GMT expires: - '-1' pragma: @@ -9650,10 +10271,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461552674760715?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450186934851661?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -9665,7 +10286,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:54:39 GMT + - Tue, 30 Apr 2019 01:37:33 GMT expires: - '-1' pragma: @@ -9695,100 +10316,83 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A54%3A48Z%20and%20correlationId%20eq%20%277d3f540b-470b-4ce4-bd43-d59e47ebb397%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A37%3A43Z%20and%20correlationId%20eq%20%2793b5cab6-5b26-43eb-a6cf-ada34f238b55%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f9780a8b-01cf-4e16-9f62-6ffd1be76964","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/f9780a8b-01cf-4e16-9f62-6ffd1be76964/ticks/636910484674918152","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e4510224-f0be-4445-9d2b-74c8016313b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"aa7ad584-d69e-4db6-9bd5-8b69142efe95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/aa7ad584-d69e-4db6-9bd5-8b69142efe95/ticks/636921850225799487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"340a75cc-540e-41b6-a435-d145047288dc","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:54:27.4918152Z","submissionTimestamp":"2019-04-16T21:54:44.0696336Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"2ec5c733-7f3c-4fe4-b4d7-161c830d48a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2ec5c733-7f3c-4fe4-b4d7-161c830d48a6/ticks/636910484372361855","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"16e41612-493a-42c4-acf3-53dc1b56cf4d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:57.2361855Z","submissionTimestamp":"2019-04-16T21:54:17.0818142Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"437a2d04-351b-42fd-98c4-406eb0c6b001","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/437a2d04-351b-42fd-98c4-406eb0c6b001/ticks/636910484274287639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"14d65866-fae8-4c47-84d2-825beaf90c07","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:47.4287639Z","submissionTimestamp":"2019-04-16T21:54:05.0868804Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3b038a54-9faa-41d2-bae1-3402efb05c44","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3b038a54-9faa-41d2-bae1-3402efb05c44/ticks/636910484270172119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7d85e3f1-bf86-48a3-8db3-754c2625752d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:47.0172119Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"a6d614a1-7c8d-45ec-ad92-52120497b743","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/a6d614a1-7c8d-45ec-ad92-52120497b743/ticks/636910484269971407","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"384bec5e-44be-4300-acde-c615bdf889fa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9971407Z","submissionTimestamp":"2019-04-16T21:54:08.1269754Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"bdb538fa-421e-4871-915d-0ab2cc66843f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/bdb538fa-421e-4871-915d-0ab2cc66843f/ticks/636910484269421983","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e51b1389-4cc4-4e15-ac61-84869a63d4e8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.9421983Z","submissionTimestamp":"2019-04-16T21:54:05.1372813Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"ec2d319b-c8d1-49f2-8042-b4a395ad21f5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/ec2d319b-c8d1-49f2-8042-b4a395ad21f5/ticks/636910484269353098","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"83c30964-ce44-4a83-bbe8-4fbdbed55c09"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9353098Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"19980733-e904-4b5b-9b2e-669b66248fec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/19980733-e904-4b5b-9b2e-669b66248fec/ticks/636910484269148329","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a51c2ecc-218b-4400-8d8c-97c483149e48"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:46.9148329Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"b3cbab49-6d4f-4da7-a1a2-a468bdefd821","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b3cbab49-6d4f-4da7-a1a2-a468bdefd821/ticks/636910484268344654","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.8344654Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f3d7509e-e347-4766-b0f2-e00cc221d723","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/f3d7509e-e347-4766-b0f2-e00cc221d723/ticks/636910484267365820","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.736582Z","submissionTimestamp":"2019-04-16T21:54:08.1259752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3266f14e-f915-43cd-a482-3b79dadbb318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3266f14e-f915-43cd-a482-3b79dadbb318/ticks/636910484267022040","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.702204Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f38b49be-8af6-49ab-bf05-9eb71efa5a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/f38b49be-8af6-49ab-bf05-9eb71efa5a49/ticks/636910484266553022","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.6553022Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"60f786d0-d4b0-44ce-aed0-d5c019703ded","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/60f786d0-d4b0-44ce-aed0-d5c019703ded/ticks/636910484260534912","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.0534912Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"d823be24-8885-4d7d-976a-5123a3aa714d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/d823be24-8885-4d7d-976a-5123a3aa714d/ticks/636910484257484843","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"cea6aa71-2554-4063-8fda-bd93246dc764","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"574b6c72-3eb9-4b75-9e78-5e15c309476e\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.11\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:45.7484843Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"cbc0efe9-c7c5-4f81-9a07-1a8242c21493","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/cbc0efe9-c7c5-4f81-9a07-1a8242c21493/ticks/636910484250685137","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:45.0685137Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9c31acc3-cef0-459f-89f3-5d179f3177e7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/9c31acc3-cef0-459f-89f3-5d179f3177e7/ticks/636910484215734938","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4338bcdf-f334-4017-b696-e4a4d67213e4","responseBody":"{\"name\":\"fromimage2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"50d91257-f52d-44b9-954c-9d59d1bdea09\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.5734938Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"377928e5-3f04-4cf1-88f0-d67a39c60b7c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/377928e5-3f04-4cf1-88f0-d67a39c60b7c/ticks/636910484213384953","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"042e4aab-f76c-47cc-8de3-d82d5e3aa7ae","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"0b5424cc-7805-47b9-8b13-eccfea7f69b1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e9443943-1117-4136-9d55-02bcc9f2a19d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.3384953Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"4629b04c-a1a7-4a64-bf63-f1a3899dbacb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/4629b04c-a1a7-4a64-bf63-f1a3899dbacb/ticks/636910484212535136","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:41.2535136Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"14adf001-5242-4bc8-9c50-17a52a95409b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/14adf001-5242-4bc8-9c50-17a52a95409b/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"8657cc94-5289-44db-8afa-2e59c35c0c72","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/8657cc94-5289-44db-8afa-2e59c35c0c72/ticks/636910484193424922","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:02.5799487Z","submissionTimestamp":"2019-04-30T01:37:25.0702572Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b1306944-8bee-404c-85c8-3a9de0010a63","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b1306944-8bee-404c-85c8-3a9de0010a63/ticks/636921850111680756","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"2f01a34a-19e3-44bb-80d9-8448d845a515"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:51.1680756Z","submissionTimestamp":"2019-04-30T01:37:19.1517181Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"508f5b33-a45e-4f6f-b953-53fba2034e61","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/508f5b33-a45e-4f6f-b953-53fba2034e61/ticks/636921850109580704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.9580704Z","submissionTimestamp":"2019-04-30T01:37:19.1517181Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"d7ad154c-07e2-4ac9-865b-74c911f218f1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/d7ad154c-07e2-4ac9-865b-74c911f218f1/ticks/636921850105864957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"95fa9211-2136-416e-bb63-7e19ea406777"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.5864957Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"efeca1e9-fb3c-4b25-bbbe-353d02486f10","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab/events/efeca1e9-fb3c-4b25-bbbe-353d02486f10/ticks/636921850105497523","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"be5f8fdd-cc15-48cd-857b-126a08045391","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"680065b7-e994-4723-b831-778aa1fee114"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.5497523Z","submissionTimestamp":"2019-04-30T01:37:14.1243712Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"7881ce0c-59a9-4839-a3a0-aab856704e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/7881ce0c-59a9-4839-a3a0-aab856704e95/ticks/636921850104416183","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0df2b5b-a6fa-404c-85b3-bd31f3529170"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.4416183Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b997c8ad-e46d-4f4f-9f31-52fbad5317d5","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab/events/b997c8ad-e46d-4f4f-9f31-52fbad5317d5/ticks/636921850103297490","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"be5f8fdd-cc15-48cd-857b-126a08045391","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.329749Z","submissionTimestamp":"2019-04-30T01:37:14.1243712Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3/ticks/636921850103164947","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.3164947Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"88bba827-2104-45e8-bf49-9b1a25c59973","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/88bba827-2104-45e8-bf49-9b1a25c59973/ticks/636921850102416119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.2416119Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2a32054c-84d6-4b19-84c0-1dbfe4510c03","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2a32054c-84d6-4b19-84c0-1dbfe4510c03/ticks/636921850090074564","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:49.0074564Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"3486736a-de9b-450f-8bef-c311d38af3bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b995a8d1-5103-4a26-9660-5ce4bd7c03b7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/3486736a-de9b-450f-8bef-c311d38af3bf/ticks/636921850081624453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4bd5e419-50cf-4e7b-8c2e-743b3f1b1626","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"b4c69492-8193-4de0-b978-ee1cb8b0a81a","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"9449d36b-ecb6-4a95-8461-0ecc31c7bcfe\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"075e2c91-64b4-4d8d-a2ce-506209d344f5\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"9449d36b-ecb6-4a95-8461-0ecc31c7bcfe\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.8\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:48.1624453Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b543df9b-cf47-439e-9396-480359ec1330","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/b543df9b-cf47-439e-9396-480359ec1330/ticks/636921850078252345","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0407a496-aab3-4558-9301-d6f78b43c66f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.8252345Z","submissionTimestamp":"2019-04-30T01:37:09.0722251Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"69eff86c-f61d-46ff-913d-fea9cbc3f31e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/69eff86c-f61d-46ff-913d-fea9cbc3f31e/ticks/636921850072568648","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29bcafcc-76c5-4781-b3bb-aff95b0f9500","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.2568648Z","submissionTimestamp":"2019-04-30T01:37:07.0675289Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"ecdec5ab-25b0-4bc5-8565-a7135e2dd00e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/ecdec5ab-25b0-4bc5-8565-a7135e2dd00e/ticks/636921850023391299","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0708f791-4c2f-4a70-9700-af802872308d","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"b7d817ca-a628-4887-92c9-271d8ed1e91d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31fd85d8-e721-4e27-b9e9-8b3cb3eb2382\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:42.3391299Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a381b05e-e0bf-4ccc-9c76-3c3702eb5e52","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/a381b05e-e0bf-4ccc-9c76-3c3702eb5e52/ticks/636921850021341583","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:42.1341583Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"0329174b-1ac3-4966-9ee9-863ffab47f8c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/0329174b-1ac3-4966-9ee9-863ffab47f8c/ticks/636921849989885480","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.988548Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"067c234f-bf21-4584-824e-7463ceb8e120","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80b1034b-60a4-4b31-a18b-07fb39a61cf9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/067c234f-bf21-4584-824e-7463ceb8e120/ticks/636921849989185892","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"69d8ff89-2ff0-45af-bd99-822c7f803c1c","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.9185892Z","submissionTimestamp":"2019-04-30T01:36:59.0784678Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"e8143a94-229d-440c-85ba-7a76cc7340fc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/e8143a94-229d-440c-85ba-7a76cc7340fc/ticks/636921849932705086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:39.3424922Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"29599085-af26-4684-8c0e-3d5f88ecd771","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/29599085-af26-4684-8c0e-3d5f88ecd771/ticks/636910484163024831","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:36.3024831Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:33.2705086Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a75061a5-42b9-4abc-9af4-42c0e55b45f1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/a75061a5-42b9-4abc-9af4-42c0e55b45f1/ticks/636921849902505356","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:30.2505356Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '85946' + - '68144' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:54:49 GMT + - Tue, 30 Apr 2019 01:37:43 GMT expires: - '-1' pragma: @@ -9822,100 +10426,83 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A54%3A58Z%20and%20correlationId%20eq%20%277d3f540b-470b-4ce4-bd43-d59e47ebb397%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A37%3A53Z%20and%20correlationId%20eq%20%2793b5cab6-5b26-43eb-a6cf-ada34f238b55%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f9780a8b-01cf-4e16-9f62-6ffd1be76964","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/f9780a8b-01cf-4e16-9f62-6ffd1be76964/ticks/636910484674918152","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e4510224-f0be-4445-9d2b-74c8016313b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"aa7ad584-d69e-4db6-9bd5-8b69142efe95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/aa7ad584-d69e-4db6-9bd5-8b69142efe95/ticks/636921850225799487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"340a75cc-540e-41b6-a435-d145047288dc","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:54:27.4918152Z","submissionTimestamp":"2019-04-16T21:54:44.0696336Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"2ec5c733-7f3c-4fe4-b4d7-161c830d48a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2ec5c733-7f3c-4fe4-b4d7-161c830d48a6/ticks/636910484372361855","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"16e41612-493a-42c4-acf3-53dc1b56cf4d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:57.2361855Z","submissionTimestamp":"2019-04-16T21:54:17.0818142Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"437a2d04-351b-42fd-98c4-406eb0c6b001","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/437a2d04-351b-42fd-98c4-406eb0c6b001/ticks/636910484274287639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"14d65866-fae8-4c47-84d2-825beaf90c07","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:47.4287639Z","submissionTimestamp":"2019-04-16T21:54:05.0868804Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3b038a54-9faa-41d2-bae1-3402efb05c44","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3b038a54-9faa-41d2-bae1-3402efb05c44/ticks/636910484270172119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7d85e3f1-bf86-48a3-8db3-754c2625752d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:47.0172119Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"a6d614a1-7c8d-45ec-ad92-52120497b743","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/a6d614a1-7c8d-45ec-ad92-52120497b743/ticks/636910484269971407","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"384bec5e-44be-4300-acde-c615bdf889fa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9971407Z","submissionTimestamp":"2019-04-16T21:54:08.1269754Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"bdb538fa-421e-4871-915d-0ab2cc66843f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/bdb538fa-421e-4871-915d-0ab2cc66843f/ticks/636910484269421983","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e51b1389-4cc4-4e15-ac61-84869a63d4e8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.9421983Z","submissionTimestamp":"2019-04-16T21:54:05.1372813Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"ec2d319b-c8d1-49f2-8042-b4a395ad21f5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/ec2d319b-c8d1-49f2-8042-b4a395ad21f5/ticks/636910484269353098","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"83c30964-ce44-4a83-bbe8-4fbdbed55c09"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9353098Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"19980733-e904-4b5b-9b2e-669b66248fec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/19980733-e904-4b5b-9b2e-669b66248fec/ticks/636910484269148329","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a51c2ecc-218b-4400-8d8c-97c483149e48"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:46.9148329Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"b3cbab49-6d4f-4da7-a1a2-a468bdefd821","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b3cbab49-6d4f-4da7-a1a2-a468bdefd821/ticks/636910484268344654","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.8344654Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f3d7509e-e347-4766-b0f2-e00cc221d723","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/f3d7509e-e347-4766-b0f2-e00cc221d723/ticks/636910484267365820","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.736582Z","submissionTimestamp":"2019-04-16T21:54:08.1259752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3266f14e-f915-43cd-a482-3b79dadbb318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3266f14e-f915-43cd-a482-3b79dadbb318/ticks/636910484267022040","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.702204Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f38b49be-8af6-49ab-bf05-9eb71efa5a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/f38b49be-8af6-49ab-bf05-9eb71efa5a49/ticks/636910484266553022","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.6553022Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"60f786d0-d4b0-44ce-aed0-d5c019703ded","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/60f786d0-d4b0-44ce-aed0-d5c019703ded/ticks/636910484260534912","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.0534912Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"d823be24-8885-4d7d-976a-5123a3aa714d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/d823be24-8885-4d7d-976a-5123a3aa714d/ticks/636910484257484843","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"cea6aa71-2554-4063-8fda-bd93246dc764","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"574b6c72-3eb9-4b75-9e78-5e15c309476e\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.11\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:45.7484843Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"cbc0efe9-c7c5-4f81-9a07-1a8242c21493","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/cbc0efe9-c7c5-4f81-9a07-1a8242c21493/ticks/636910484250685137","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:45.0685137Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9c31acc3-cef0-459f-89f3-5d179f3177e7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/9c31acc3-cef0-459f-89f3-5d179f3177e7/ticks/636910484215734938","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4338bcdf-f334-4017-b696-e4a4d67213e4","responseBody":"{\"name\":\"fromimage2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"50d91257-f52d-44b9-954c-9d59d1bdea09\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.5734938Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"377928e5-3f04-4cf1-88f0-d67a39c60b7c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/377928e5-3f04-4cf1-88f0-d67a39c60b7c/ticks/636910484213384953","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"042e4aab-f76c-47cc-8de3-d82d5e3aa7ae","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"0b5424cc-7805-47b9-8b13-eccfea7f69b1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e9443943-1117-4136-9d55-02bcc9f2a19d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.3384953Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"4629b04c-a1a7-4a64-bf63-f1a3899dbacb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/4629b04c-a1a7-4a64-bf63-f1a3899dbacb/ticks/636910484212535136","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:41.2535136Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"14adf001-5242-4bc8-9c50-17a52a95409b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/14adf001-5242-4bc8-9c50-17a52a95409b/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"8657cc94-5289-44db-8afa-2e59c35c0c72","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/8657cc94-5289-44db-8afa-2e59c35c0c72/ticks/636910484193424922","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:02.5799487Z","submissionTimestamp":"2019-04-30T01:37:25.0702572Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b1306944-8bee-404c-85c8-3a9de0010a63","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b1306944-8bee-404c-85c8-3a9de0010a63/ticks/636921850111680756","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"2f01a34a-19e3-44bb-80d9-8448d845a515"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:51.1680756Z","submissionTimestamp":"2019-04-30T01:37:19.1517181Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"508f5b33-a45e-4f6f-b953-53fba2034e61","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/508f5b33-a45e-4f6f-b953-53fba2034e61/ticks/636921850109580704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.9580704Z","submissionTimestamp":"2019-04-30T01:37:19.1517181Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"d7ad154c-07e2-4ac9-865b-74c911f218f1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/d7ad154c-07e2-4ac9-865b-74c911f218f1/ticks/636921850105864957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"95fa9211-2136-416e-bb63-7e19ea406777"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.5864957Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"efeca1e9-fb3c-4b25-bbbe-353d02486f10","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab/events/efeca1e9-fb3c-4b25-bbbe-353d02486f10/ticks/636921850105497523","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"be5f8fdd-cc15-48cd-857b-126a08045391","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"680065b7-e994-4723-b831-778aa1fee114"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.5497523Z","submissionTimestamp":"2019-04-30T01:37:14.1243712Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"7881ce0c-59a9-4839-a3a0-aab856704e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/7881ce0c-59a9-4839-a3a0-aab856704e95/ticks/636921850104416183","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0df2b5b-a6fa-404c-85b3-bd31f3529170"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.4416183Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b997c8ad-e46d-4f4f-9f31-52fbad5317d5","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab/events/b997c8ad-e46d-4f4f-9f31-52fbad5317d5/ticks/636921850103297490","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"be5f8fdd-cc15-48cd-857b-126a08045391","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.329749Z","submissionTimestamp":"2019-04-30T01:37:14.1243712Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3/ticks/636921850103164947","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.3164947Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"88bba827-2104-45e8-bf49-9b1a25c59973","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/88bba827-2104-45e8-bf49-9b1a25c59973/ticks/636921850102416119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.2416119Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2a32054c-84d6-4b19-84c0-1dbfe4510c03","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2a32054c-84d6-4b19-84c0-1dbfe4510c03/ticks/636921850090074564","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:49.0074564Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"3486736a-de9b-450f-8bef-c311d38af3bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b995a8d1-5103-4a26-9660-5ce4bd7c03b7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/3486736a-de9b-450f-8bef-c311d38af3bf/ticks/636921850081624453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4bd5e419-50cf-4e7b-8c2e-743b3f1b1626","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"b4c69492-8193-4de0-b978-ee1cb8b0a81a","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"9449d36b-ecb6-4a95-8461-0ecc31c7bcfe\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"075e2c91-64b4-4d8d-a2ce-506209d344f5\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"9449d36b-ecb6-4a95-8461-0ecc31c7bcfe\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.8\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:48.1624453Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b543df9b-cf47-439e-9396-480359ec1330","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/b543df9b-cf47-439e-9396-480359ec1330/ticks/636921850078252345","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0407a496-aab3-4558-9301-d6f78b43c66f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.8252345Z","submissionTimestamp":"2019-04-30T01:37:09.0722251Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"69eff86c-f61d-46ff-913d-fea9cbc3f31e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/69eff86c-f61d-46ff-913d-fea9cbc3f31e/ticks/636921850072568648","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29bcafcc-76c5-4781-b3bb-aff95b0f9500","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.2568648Z","submissionTimestamp":"2019-04-30T01:37:07.0675289Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"ecdec5ab-25b0-4bc5-8565-a7135e2dd00e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/ecdec5ab-25b0-4bc5-8565-a7135e2dd00e/ticks/636921850023391299","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0708f791-4c2f-4a70-9700-af802872308d","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"b7d817ca-a628-4887-92c9-271d8ed1e91d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31fd85d8-e721-4e27-b9e9-8b3cb3eb2382\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:42.3391299Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a381b05e-e0bf-4ccc-9c76-3c3702eb5e52","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/a381b05e-e0bf-4ccc-9c76-3c3702eb5e52/ticks/636921850021341583","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:42.1341583Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"0329174b-1ac3-4966-9ee9-863ffab47f8c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/0329174b-1ac3-4966-9ee9-863ffab47f8c/ticks/636921849989885480","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.988548Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"067c234f-bf21-4584-824e-7463ceb8e120","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80b1034b-60a4-4b31-a18b-07fb39a61cf9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/067c234f-bf21-4584-824e-7463ceb8e120/ticks/636921849989185892","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"69d8ff89-2ff0-45af-bd99-822c7f803c1c","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.9185892Z","submissionTimestamp":"2019-04-30T01:36:59.0784678Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"e8143a94-229d-440c-85ba-7a76cc7340fc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/e8143a94-229d-440c-85ba-7a76cc7340fc/ticks/636921849932705086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:39.3424922Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"29599085-af26-4684-8c0e-3d5f88ecd771","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/29599085-af26-4684-8c0e-3d5f88ecd771/ticks/636910484163024831","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:36.3024831Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:33.2705086Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a75061a5-42b9-4abc-9af4-42c0e55b45f1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/a75061a5-42b9-4abc-9af4-42c0e55b45f1/ticks/636921849902505356","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:30.2505356Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '85946' + - '68144' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:00 GMT + - Tue, 30 Apr 2019 01:37:53 GMT expires: - '-1' pragma: @@ -9947,10 +10534,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461552674760715?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450186934851661?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -9962,7 +10549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:09 GMT + - Tue, 30 Apr 2019 01:38:03 GMT expires: - '-1' pragma: @@ -9992,104 +10579,100 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A55%3A09Z%20and%20correlationId%20eq%20%277d3f540b-470b-4ce4-bd43-d59e47ebb397%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A38%3A04Z%20and%20correlationId%20eq%20%2793b5cab6-5b26-43eb-a6cf-ada34f238b55%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"4a42518f-9f99-48d5-884d-2d68d408f411","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/4a42518f-9f99-48d5-884d-2d68d408f411/ticks/636910484832578549","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e577a025-2f86-44d3-8352-b1dbf7ea2418","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"0f07327b-6fa6-4304-8c39-5e2d845e64c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/0f07327b-6fa6-4304-8c39-5e2d845e64c6/ticks/636921850535211279","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e6d00901-22ba-48f4-ac03-9a4ab88cbc6a","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:54:43.2578549Z","submissionTimestamp":"2019-04-16T21:55:04.0954486Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f9780a8b-01cf-4e16-9f62-6ffd1be76964","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/f9780a8b-01cf-4e16-9f62-6ffd1be76964/ticks/636910484674918152","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e4510224-f0be-4445-9d2b-74c8016313b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:33.5211279Z","submissionTimestamp":"2019-04-30T01:37:54.0924622Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"aa7ad584-d69e-4db6-9bd5-8b69142efe95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/aa7ad584-d69e-4db6-9bd5-8b69142efe95/ticks/636921850225799487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"340a75cc-540e-41b6-a435-d145047288dc","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:54:27.4918152Z","submissionTimestamp":"2019-04-16T21:54:44.0696336Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"2ec5c733-7f3c-4fe4-b4d7-161c830d48a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2ec5c733-7f3c-4fe4-b4d7-161c830d48a6/ticks/636910484372361855","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"16e41612-493a-42c4-acf3-53dc1b56cf4d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:57.2361855Z","submissionTimestamp":"2019-04-16T21:54:17.0818142Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"437a2d04-351b-42fd-98c4-406eb0c6b001","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/437a2d04-351b-42fd-98c4-406eb0c6b001/ticks/636910484274287639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"14d65866-fae8-4c47-84d2-825beaf90c07","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:47.4287639Z","submissionTimestamp":"2019-04-16T21:54:05.0868804Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3b038a54-9faa-41d2-bae1-3402efb05c44","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3b038a54-9faa-41d2-bae1-3402efb05c44/ticks/636910484270172119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7d85e3f1-bf86-48a3-8db3-754c2625752d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:47.0172119Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"a6d614a1-7c8d-45ec-ad92-52120497b743","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/a6d614a1-7c8d-45ec-ad92-52120497b743/ticks/636910484269971407","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"384bec5e-44be-4300-acde-c615bdf889fa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9971407Z","submissionTimestamp":"2019-04-16T21:54:08.1269754Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"bdb538fa-421e-4871-915d-0ab2cc66843f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/bdb538fa-421e-4871-915d-0ab2cc66843f/ticks/636910484269421983","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e51b1389-4cc4-4e15-ac61-84869a63d4e8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.9421983Z","submissionTimestamp":"2019-04-16T21:54:05.1372813Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"ec2d319b-c8d1-49f2-8042-b4a395ad21f5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/ec2d319b-c8d1-49f2-8042-b4a395ad21f5/ticks/636910484269353098","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"83c30964-ce44-4a83-bbe8-4fbdbed55c09"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9353098Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"19980733-e904-4b5b-9b2e-669b66248fec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/19980733-e904-4b5b-9b2e-669b66248fec/ticks/636910484269148329","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a51c2ecc-218b-4400-8d8c-97c483149e48"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:46.9148329Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"b3cbab49-6d4f-4da7-a1a2-a468bdefd821","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b3cbab49-6d4f-4da7-a1a2-a468bdefd821/ticks/636910484268344654","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.8344654Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f3d7509e-e347-4766-b0f2-e00cc221d723","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/f3d7509e-e347-4766-b0f2-e00cc221d723/ticks/636910484267365820","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.736582Z","submissionTimestamp":"2019-04-16T21:54:08.1259752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3266f14e-f915-43cd-a482-3b79dadbb318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3266f14e-f915-43cd-a482-3b79dadbb318/ticks/636910484267022040","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.702204Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f38b49be-8af6-49ab-bf05-9eb71efa5a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/f38b49be-8af6-49ab-bf05-9eb71efa5a49/ticks/636910484266553022","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.6553022Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"60f786d0-d4b0-44ce-aed0-d5c019703ded","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/60f786d0-d4b0-44ce-aed0-d5c019703ded/ticks/636910484260534912","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.0534912Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"d823be24-8885-4d7d-976a-5123a3aa714d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/d823be24-8885-4d7d-976a-5123a3aa714d/ticks/636910484257484843","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"cea6aa71-2554-4063-8fda-bd93246dc764","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"574b6c72-3eb9-4b75-9e78-5e15c309476e\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.11\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:45.7484843Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"cbc0efe9-c7c5-4f81-9a07-1a8242c21493","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/cbc0efe9-c7c5-4f81-9a07-1a8242c21493/ticks/636910484250685137","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:45.0685137Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9c31acc3-cef0-459f-89f3-5d179f3177e7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/9c31acc3-cef0-459f-89f3-5d179f3177e7/ticks/636910484215734938","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4338bcdf-f334-4017-b696-e4a4d67213e4","responseBody":"{\"name\":\"fromimage2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"50d91257-f52d-44b9-954c-9d59d1bdea09\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:02.5799487Z","submissionTimestamp":"2019-04-30T01:37:25.0702572Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b1306944-8bee-404c-85c8-3a9de0010a63","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b1306944-8bee-404c-85c8-3a9de0010a63/ticks/636921850111680756","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"2f01a34a-19e3-44bb-80d9-8448d845a515"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:51.1680756Z","submissionTimestamp":"2019-04-30T01:37:19.1517181Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"508f5b33-a45e-4f6f-b953-53fba2034e61","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/508f5b33-a45e-4f6f-b953-53fba2034e61/ticks/636921850109580704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.9580704Z","submissionTimestamp":"2019-04-30T01:37:19.1517181Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"d7ad154c-07e2-4ac9-865b-74c911f218f1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/d7ad154c-07e2-4ac9-865b-74c911f218f1/ticks/636921850105864957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"95fa9211-2136-416e-bb63-7e19ea406777"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.5864957Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"efeca1e9-fb3c-4b25-bbbe-353d02486f10","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab/events/efeca1e9-fb3c-4b25-bbbe-353d02486f10/ticks/636921850105497523","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"be5f8fdd-cc15-48cd-857b-126a08045391","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"680065b7-e994-4723-b831-778aa1fee114"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.5497523Z","submissionTimestamp":"2019-04-30T01:37:14.1243712Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"7881ce0c-59a9-4839-a3a0-aab856704e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/7881ce0c-59a9-4839-a3a0-aab856704e95/ticks/636921850104416183","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0df2b5b-a6fa-404c-85b3-bd31f3529170"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.4416183Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b997c8ad-e46d-4f4f-9f31-52fbad5317d5","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab/events/b997c8ad-e46d-4f4f-9f31-52fbad5317d5/ticks/636921850103297490","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"be5f8fdd-cc15-48cd-857b-126a08045391","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.329749Z","submissionTimestamp":"2019-04-30T01:37:14.1243712Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3/ticks/636921850103164947","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.3164947Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"88bba827-2104-45e8-bf49-9b1a25c59973","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/88bba827-2104-45e8-bf49-9b1a25c59973/ticks/636921850102416119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.2416119Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2a32054c-84d6-4b19-84c0-1dbfe4510c03","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2a32054c-84d6-4b19-84c0-1dbfe4510c03/ticks/636921850090074564","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:49.0074564Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"3486736a-de9b-450f-8bef-c311d38af3bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b995a8d1-5103-4a26-9660-5ce4bd7c03b7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/3486736a-de9b-450f-8bef-c311d38af3bf/ticks/636921850081624453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4bd5e419-50cf-4e7b-8c2e-743b3f1b1626","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"b4c69492-8193-4de0-b978-ee1cb8b0a81a","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"9449d36b-ecb6-4a95-8461-0ecc31c7bcfe\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"075e2c91-64b4-4d8d-a2ce-506209d344f5\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"9449d36b-ecb6-4a95-8461-0ecc31c7bcfe\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.8\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:48.1624453Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b543df9b-cf47-439e-9396-480359ec1330","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/b543df9b-cf47-439e-9396-480359ec1330/ticks/636921850078252345","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0407a496-aab3-4558-9301-d6f78b43c66f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.8252345Z","submissionTimestamp":"2019-04-30T01:37:09.0722251Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"69eff86c-f61d-46ff-913d-fea9cbc3f31e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/69eff86c-f61d-46ff-913d-fea9cbc3f31e/ticks/636921850072568648","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29bcafcc-76c5-4781-b3bb-aff95b0f9500","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.2568648Z","submissionTimestamp":"2019-04-30T01:37:07.0675289Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"07ca9924-5a86-4a12-b841-36905bd25749","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b995a8d1-5103-4a26-9660-5ce4bd7c03b7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/07ca9924-5a86-4a12-b841-36905bd25749/ticks/636921850066043269","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4bd5e419-50cf-4e7b-8c2e-743b3f1b1626","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:46.6043269Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"ecdec5ab-25b0-4bc5-8565-a7135e2dd00e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/ecdec5ab-25b0-4bc5-8565-a7135e2dd00e/ticks/636921850023391299","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0708f791-4c2f-4a70-9700-af802872308d","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"b7d817ca-a628-4887-92c9-271d8ed1e91d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31fd85d8-e721-4e27-b9e9-8b3cb3eb2382\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:42.3391299Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a381b05e-e0bf-4ccc-9c76-3c3702eb5e52","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/a381b05e-e0bf-4ccc-9c76-3c3702eb5e52/ticks/636921850021341583","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:42.1341583Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"6d8866d8-cd63-4ca7-ab92-007068ba8292","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80b1034b-60a4-4b31-a18b-07fb39a61cf9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/6d8866d8-cd63-4ca7-ab92-007068ba8292/ticks/636921850011041166","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"69d8ff89-2ff0-45af-bd99-822c7f803c1c","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"867874a2-6fc6-4ebd-bfbb-33e9822fc694","responseBody":"{\"name\":\"fromimage2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a80924de-96f0-4637-9607-06ce871605ad\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.5734938Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"377928e5-3f04-4cf1-88f0-d67a39c60b7c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/377928e5-3f04-4cf1-88f0-d67a39c60b7c/ticks/636910484213384953","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"042e4aab-f76c-47cc-8de3-d82d5e3aa7ae","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"0b5424cc-7805-47b9-8b13-eccfea7f69b1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e9443943-1117-4136-9d55-02bcc9f2a19d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.3384953Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"4629b04c-a1a7-4a64-bf63-f1a3899dbacb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/4629b04c-a1a7-4a64-bf63-f1a3899dbacb/ticks/636910484212535136","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:41.2535136Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"14adf001-5242-4bc8-9c50-17a52a95409b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/14adf001-5242-4bc8-9c50-17a52a95409b/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"8657cc94-5289-44db-8afa-2e59c35c0c72","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/8657cc94-5289-44db-8afa-2e59c35c0c72/ticks/636910484193424922","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:41.1041166Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"0329174b-1ac3-4966-9ee9-863ffab47f8c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/0329174b-1ac3-4966-9ee9-863ffab47f8c/ticks/636921849989885480","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.988548Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"067c234f-bf21-4584-824e-7463ceb8e120","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80b1034b-60a4-4b31-a18b-07fb39a61cf9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/067c234f-bf21-4584-824e-7463ceb8e120/ticks/636921849989185892","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"69d8ff89-2ff0-45af-bd99-822c7f803c1c","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.9185892Z","submissionTimestamp":"2019-04-30T01:36:59.0784678Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"e8143a94-229d-440c-85ba-7a76cc7340fc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/e8143a94-229d-440c-85ba-7a76cc7340fc/ticks/636921849932705086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:39.3424922Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"29599085-af26-4684-8c0e-3d5f88ecd771","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/29599085-af26-4684-8c0e-3d5f88ecd771/ticks/636910484163024831","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:36.3024831Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:33.2705086Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a75061a5-42b9-4abc-9af4-42c0e55b45f1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/a75061a5-42b9-4abc-9af4-42c0e55b45f1/ticks/636921849902505356","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:30.2505356Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '89544' + - '85977' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:10 GMT + - Tue, 30 Apr 2019 01:38:04 GMT expires: - '-1' pragma: @@ -10123,104 +10706,100 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A55%3A19Z%20and%20correlationId%20eq%20%277d3f540b-470b-4ce4-bd43-d59e47ebb397%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A38%3A14Z%20and%20correlationId%20eq%20%2793b5cab6-5b26-43eb-a6cf-ada34f238b55%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"4a42518f-9f99-48d5-884d-2d68d408f411","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/4a42518f-9f99-48d5-884d-2d68d408f411/ticks/636910484832578549","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e577a025-2f86-44d3-8352-b1dbf7ea2418","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:54:43.2578549Z","submissionTimestamp":"2019-04-16T21:55:04.0954486Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f9780a8b-01cf-4e16-9f62-6ffd1be76964","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/f9780a8b-01cf-4e16-9f62-6ffd1be76964/ticks/636910484674918152","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e4510224-f0be-4445-9d2b-74c8016313b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"0f07327b-6fa6-4304-8c39-5e2d845e64c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/0f07327b-6fa6-4304-8c39-5e2d845e64c6/ticks/636921850535211279","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e6d00901-22ba-48f4-ac03-9a4ab88cbc6a","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:54:27.4918152Z","submissionTimestamp":"2019-04-16T21:54:44.0696336Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"2ec5c733-7f3c-4fe4-b4d7-161c830d48a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2ec5c733-7f3c-4fe4-b4d7-161c830d48a6/ticks/636910484372361855","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"16e41612-493a-42c4-acf3-53dc1b56cf4d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:33.5211279Z","submissionTimestamp":"2019-04-30T01:37:54.0924622Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"aa7ad584-d69e-4db6-9bd5-8b69142efe95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/aa7ad584-d69e-4db6-9bd5-8b69142efe95/ticks/636921850225799487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"340a75cc-540e-41b6-a435-d145047288dc","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:57.2361855Z","submissionTimestamp":"2019-04-16T21:54:17.0818142Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"437a2d04-351b-42fd-98c4-406eb0c6b001","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/437a2d04-351b-42fd-98c4-406eb0c6b001/ticks/636910484274287639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"14d65866-fae8-4c47-84d2-825beaf90c07","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:47.4287639Z","submissionTimestamp":"2019-04-16T21:54:05.0868804Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3b038a54-9faa-41d2-bae1-3402efb05c44","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3b038a54-9faa-41d2-bae1-3402efb05c44/ticks/636910484270172119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7d85e3f1-bf86-48a3-8db3-754c2625752d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:47.0172119Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"a6d614a1-7c8d-45ec-ad92-52120497b743","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/a6d614a1-7c8d-45ec-ad92-52120497b743/ticks/636910484269971407","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"384bec5e-44be-4300-acde-c615bdf889fa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9971407Z","submissionTimestamp":"2019-04-16T21:54:08.1269754Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"bdb538fa-421e-4871-915d-0ab2cc66843f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/bdb538fa-421e-4871-915d-0ab2cc66843f/ticks/636910484269421983","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e51b1389-4cc4-4e15-ac61-84869a63d4e8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.9421983Z","submissionTimestamp":"2019-04-16T21:54:05.1372813Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"ec2d319b-c8d1-49f2-8042-b4a395ad21f5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/ec2d319b-c8d1-49f2-8042-b4a395ad21f5/ticks/636910484269353098","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"83c30964-ce44-4a83-bbe8-4fbdbed55c09"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9353098Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"19980733-e904-4b5b-9b2e-669b66248fec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/19980733-e904-4b5b-9b2e-669b66248fec/ticks/636910484269148329","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a51c2ecc-218b-4400-8d8c-97c483149e48"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:46.9148329Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"b3cbab49-6d4f-4da7-a1a2-a468bdefd821","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b3cbab49-6d4f-4da7-a1a2-a468bdefd821/ticks/636910484268344654","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.8344654Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f3d7509e-e347-4766-b0f2-e00cc221d723","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/f3d7509e-e347-4766-b0f2-e00cc221d723/ticks/636910484267365820","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.736582Z","submissionTimestamp":"2019-04-16T21:54:08.1259752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3266f14e-f915-43cd-a482-3b79dadbb318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3266f14e-f915-43cd-a482-3b79dadbb318/ticks/636910484267022040","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.702204Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f38b49be-8af6-49ab-bf05-9eb71efa5a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/f38b49be-8af6-49ab-bf05-9eb71efa5a49/ticks/636910484266553022","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.6553022Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"60f786d0-d4b0-44ce-aed0-d5c019703ded","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/60f786d0-d4b0-44ce-aed0-d5c019703ded/ticks/636910484260534912","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.0534912Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"d823be24-8885-4d7d-976a-5123a3aa714d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/d823be24-8885-4d7d-976a-5123a3aa714d/ticks/636910484257484843","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"cea6aa71-2554-4063-8fda-bd93246dc764","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"574b6c72-3eb9-4b75-9e78-5e15c309476e\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.11\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:45.7484843Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"cbc0efe9-c7c5-4f81-9a07-1a8242c21493","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/cbc0efe9-c7c5-4f81-9a07-1a8242c21493/ticks/636910484250685137","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:45.0685137Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9c31acc3-cef0-459f-89f3-5d179f3177e7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/9c31acc3-cef0-459f-89f3-5d179f3177e7/ticks/636910484215734938","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4338bcdf-f334-4017-b696-e4a4d67213e4","responseBody":"{\"name\":\"fromimage2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"50d91257-f52d-44b9-954c-9d59d1bdea09\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:02.5799487Z","submissionTimestamp":"2019-04-30T01:37:25.0702572Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b1306944-8bee-404c-85c8-3a9de0010a63","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b1306944-8bee-404c-85c8-3a9de0010a63/ticks/636921850111680756","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"2f01a34a-19e3-44bb-80d9-8448d845a515"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:51.1680756Z","submissionTimestamp":"2019-04-30T01:37:19.1517181Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"508f5b33-a45e-4f6f-b953-53fba2034e61","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/508f5b33-a45e-4f6f-b953-53fba2034e61/ticks/636921850109580704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.9580704Z","submissionTimestamp":"2019-04-30T01:37:19.1517181Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"d7ad154c-07e2-4ac9-865b-74c911f218f1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/d7ad154c-07e2-4ac9-865b-74c911f218f1/ticks/636921850105864957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"95fa9211-2136-416e-bb63-7e19ea406777"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.5864957Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"efeca1e9-fb3c-4b25-bbbe-353d02486f10","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab/events/efeca1e9-fb3c-4b25-bbbe-353d02486f10/ticks/636921850105497523","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"be5f8fdd-cc15-48cd-857b-126a08045391","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"680065b7-e994-4723-b831-778aa1fee114"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.5497523Z","submissionTimestamp":"2019-04-30T01:37:14.1243712Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"7881ce0c-59a9-4839-a3a0-aab856704e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/7881ce0c-59a9-4839-a3a0-aab856704e95/ticks/636921850104416183","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0df2b5b-a6fa-404c-85b3-bd31f3529170"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.4416183Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b997c8ad-e46d-4f4f-9f31-52fbad5317d5","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab/events/b997c8ad-e46d-4f4f-9f31-52fbad5317d5/ticks/636921850103297490","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"be5f8fdd-cc15-48cd-857b-126a08045391","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.329749Z","submissionTimestamp":"2019-04-30T01:37:14.1243712Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3/ticks/636921850103164947","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.3164947Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"88bba827-2104-45e8-bf49-9b1a25c59973","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/88bba827-2104-45e8-bf49-9b1a25c59973/ticks/636921850102416119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.2416119Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2a32054c-84d6-4b19-84c0-1dbfe4510c03","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2a32054c-84d6-4b19-84c0-1dbfe4510c03/ticks/636921850090074564","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:49.0074564Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"3486736a-de9b-450f-8bef-c311d38af3bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b995a8d1-5103-4a26-9660-5ce4bd7c03b7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/3486736a-de9b-450f-8bef-c311d38af3bf/ticks/636921850081624453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4bd5e419-50cf-4e7b-8c2e-743b3f1b1626","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"b4c69492-8193-4de0-b978-ee1cb8b0a81a","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"9449d36b-ecb6-4a95-8461-0ecc31c7bcfe\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"075e2c91-64b4-4d8d-a2ce-506209d344f5\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"9449d36b-ecb6-4a95-8461-0ecc31c7bcfe\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.8\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:48.1624453Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b543df9b-cf47-439e-9396-480359ec1330","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/b543df9b-cf47-439e-9396-480359ec1330/ticks/636921850078252345","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0407a496-aab3-4558-9301-d6f78b43c66f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.8252345Z","submissionTimestamp":"2019-04-30T01:37:09.0722251Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"69eff86c-f61d-46ff-913d-fea9cbc3f31e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/69eff86c-f61d-46ff-913d-fea9cbc3f31e/ticks/636921850072568648","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29bcafcc-76c5-4781-b3bb-aff95b0f9500","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.2568648Z","submissionTimestamp":"2019-04-30T01:37:07.0675289Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"07ca9924-5a86-4a12-b841-36905bd25749","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b995a8d1-5103-4a26-9660-5ce4bd7c03b7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/07ca9924-5a86-4a12-b841-36905bd25749/ticks/636921850066043269","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4bd5e419-50cf-4e7b-8c2e-743b3f1b1626","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:46.6043269Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"ecdec5ab-25b0-4bc5-8565-a7135e2dd00e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/ecdec5ab-25b0-4bc5-8565-a7135e2dd00e/ticks/636921850023391299","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0708f791-4c2f-4a70-9700-af802872308d","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"b7d817ca-a628-4887-92c9-271d8ed1e91d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31fd85d8-e721-4e27-b9e9-8b3cb3eb2382\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:42.3391299Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a381b05e-e0bf-4ccc-9c76-3c3702eb5e52","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/a381b05e-e0bf-4ccc-9c76-3c3702eb5e52/ticks/636921850021341583","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:42.1341583Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"6d8866d8-cd63-4ca7-ab92-007068ba8292","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80b1034b-60a4-4b31-a18b-07fb39a61cf9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/6d8866d8-cd63-4ca7-ab92-007068ba8292/ticks/636921850011041166","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"69d8ff89-2ff0-45af-bd99-822c7f803c1c","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"867874a2-6fc6-4ebd-bfbb-33e9822fc694","responseBody":"{\"name\":\"fromimage2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a80924de-96f0-4637-9607-06ce871605ad\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.5734938Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"377928e5-3f04-4cf1-88f0-d67a39c60b7c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/377928e5-3f04-4cf1-88f0-d67a39c60b7c/ticks/636910484213384953","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"042e4aab-f76c-47cc-8de3-d82d5e3aa7ae","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"0b5424cc-7805-47b9-8b13-eccfea7f69b1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e9443943-1117-4136-9d55-02bcc9f2a19d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.3384953Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"4629b04c-a1a7-4a64-bf63-f1a3899dbacb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/4629b04c-a1a7-4a64-bf63-f1a3899dbacb/ticks/636910484212535136","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:41.2535136Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"14adf001-5242-4bc8-9c50-17a52a95409b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/14adf001-5242-4bc8-9c50-17a52a95409b/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"8657cc94-5289-44db-8afa-2e59c35c0c72","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/8657cc94-5289-44db-8afa-2e59c35c0c72/ticks/636910484193424922","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:41.1041166Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"0329174b-1ac3-4966-9ee9-863ffab47f8c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/0329174b-1ac3-4966-9ee9-863ffab47f8c/ticks/636921849989885480","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.988548Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"067c234f-bf21-4584-824e-7463ceb8e120","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80b1034b-60a4-4b31-a18b-07fb39a61cf9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/067c234f-bf21-4584-824e-7463ceb8e120/ticks/636921849989185892","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"69d8ff89-2ff0-45af-bd99-822c7f803c1c","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.9185892Z","submissionTimestamp":"2019-04-30T01:36:59.0784678Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"e8143a94-229d-440c-85ba-7a76cc7340fc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/e8143a94-229d-440c-85ba-7a76cc7340fc/ticks/636921849932705086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:39.3424922Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"29599085-af26-4684-8c0e-3d5f88ecd771","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/29599085-af26-4684-8c0e-3d5f88ecd771/ticks/636910484163024831","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:36.3024831Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:33.2705086Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a75061a5-42b9-4abc-9af4-42c0e55b45f1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/a75061a5-42b9-4abc-9af4-42c0e55b45f1/ticks/636921849902505356","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:30.2505356Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '89544' + - '85977' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:21 GMT + - Tue, 30 Apr 2019 01:38:14 GMT expires: - '-1' pragma: @@ -10254,112 +10833,108 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A55%3A30Z%20and%20correlationId%20eq%20%277d3f540b-470b-4ce4-bd43-d59e47ebb397%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A38%3A24Z%20and%20correlationId%20eq%20%2793b5cab6-5b26-43eb-a6cf-ada34f238b55%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f9439289-334a-416d-a65e-43133d59b3df","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/f9439289-334a-416d-a65e-43133d59b3df/ticks/636910485188637154","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"0488fbdd-f321-49e9-a0ff-2457eff332b0","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:18.8637154Z","submissionTimestamp":"2019-04-16T21:55:30.1012878Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"b69d4cae-fd84-49ca-a220-c5e467b6ce68","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b69d4cae-fd84-49ca-a220-c5e467b6ce68/ticks/636910484993594381","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"6f1e7073-7af2-48ec-b972-027e42446781","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"86e51b3c-5e37-4f56-8c93-5ca020097a71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/86e51b3c-5e37-4f56-8c93-5ca020097a71/ticks/636921850858599026","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"cf7181f4-92a2-4146-a64a-f1e75c6e319c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:54:59.3594381Z","submissionTimestamp":"2019-04-16T21:55:21.0710131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"4a42518f-9f99-48d5-884d-2d68d408f411","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/4a42518f-9f99-48d5-884d-2d68d408f411/ticks/636910484832578549","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e577a025-2f86-44d3-8352-b1dbf7ea2418","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:05.8599026Z","submissionTimestamp":"2019-04-30T01:38:24.070513Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"ea4f1d42-cafd-46f6-885f-7f79010d9028","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/ea4f1d42-cafd-46f6-885f-7f79010d9028/ticks/636921850689617747","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"52ecf2f0-ab76-4433-a125-7608e040381c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:54:43.2578549Z","submissionTimestamp":"2019-04-16T21:55:04.0954486Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f9780a8b-01cf-4e16-9f62-6ffd1be76964","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/f9780a8b-01cf-4e16-9f62-6ffd1be76964/ticks/636910484674918152","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e4510224-f0be-4445-9d2b-74c8016313b7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:48.9617747Z","submissionTimestamp":"2019-04-30T01:38:14.0831273Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"0f07327b-6fa6-4304-8c39-5e2d845e64c6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/0f07327b-6fa6-4304-8c39-5e2d845e64c6/ticks/636921850535211279","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e6d00901-22ba-48f4-ac03-9a4ab88cbc6a","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:54:27.4918152Z","submissionTimestamp":"2019-04-16T21:54:44.0696336Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"2ec5c733-7f3c-4fe4-b4d7-161c830d48a6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2ec5c733-7f3c-4fe4-b4d7-161c830d48a6/ticks/636910484372361855","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"16e41612-493a-42c4-acf3-53dc1b56cf4d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:33.5211279Z","submissionTimestamp":"2019-04-30T01:37:54.0924622Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"aa7ad584-d69e-4db6-9bd5-8b69142efe95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/aa7ad584-d69e-4db6-9bd5-8b69142efe95/ticks/636921850225799487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"340a75cc-540e-41b6-a435-d145047288dc","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:57.2361855Z","submissionTimestamp":"2019-04-16T21:54:17.0818142Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"437a2d04-351b-42fd-98c4-406eb0c6b001","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/437a2d04-351b-42fd-98c4-406eb0c6b001/ticks/636910484274287639","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"14d65866-fae8-4c47-84d2-825beaf90c07","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:47.4287639Z","submissionTimestamp":"2019-04-16T21:54:05.0868804Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3b038a54-9faa-41d2-bae1-3402efb05c44","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3b038a54-9faa-41d2-bae1-3402efb05c44/ticks/636910484270172119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"7d85e3f1-bf86-48a3-8db3-754c2625752d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:47.0172119Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"a6d614a1-7c8d-45ec-ad92-52120497b743","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/a6d614a1-7c8d-45ec-ad92-52120497b743/ticks/636910484269971407","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"384bec5e-44be-4300-acde-c615bdf889fa"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9971407Z","submissionTimestamp":"2019-04-16T21:54:08.1269754Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"bdb538fa-421e-4871-915d-0ab2cc66843f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/bdb538fa-421e-4871-915d-0ab2cc66843f/ticks/636910484269421983","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e51b1389-4cc4-4e15-ac61-84869a63d4e8","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.9421983Z","submissionTimestamp":"2019-04-16T21:54:05.1372813Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"ec2d319b-c8d1-49f2-8042-b4a395ad21f5","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/ec2d319b-c8d1-49f2-8042-b4a395ad21f5/ticks/636910484269353098","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"83c30964-ce44-4a83-bbe8-4fbdbed55c09"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:53:46.9353098Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"19980733-e904-4b5b-9b2e-669b66248fec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/19980733-e904-4b5b-9b2e-669b66248fec/ticks/636910484269148329","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"a51c2ecc-218b-4400-8d8c-97c483149e48"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:46.9148329Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"b3cbab49-6d4f-4da7-a1a2-a468bdefd821","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b3cbab49-6d4f-4da7-a1a2-a468bdefd821/ticks/636910484268344654","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.8344654Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f3d7509e-e347-4766-b0f2-e00cc221d723","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6/events/f3d7509e-e347-4766-b0f2-e00cc221d723/ticks/636910484267365820","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c0c4ce1b-b0f2-402e-9555-84e64db6c6c7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.736582Z","submissionTimestamp":"2019-04-16T21:54:08.1259752Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"3266f14e-f915-43cd-a482-3b79dadbb318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc/events/3266f14e-f915-43cd-a482-3b79dadbb318/ticks/636910484267022040","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"05b33ec8-65df-412c-bb34-10457517904e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.702204Z","submissionTimestamp":"2019-04-16T21:54:02.0783382Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"f38b49be-8af6-49ab-bf05-9eb71efa5a49","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b14dd1b6-d697-4e0b-acef-b7e0b5ce2524","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2/events/f38b49be-8af6-49ab-bf05-9eb71efa5a49/ticks/636910484266553022","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"20e6c778-779e-4b38-a2f3-67a095e2eade","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.6553022Z","submissionTimestamp":"2019-04-16T21:54:09.0745435Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"60f786d0-d4b0-44ce-aed0-d5c019703ded","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1e1b5c28-f858-459b-b16b-5ce090cc708d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/60f786d0-d4b0-44ce-aed0-d5c019703ded/ticks/636910484260534912","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5802b676-85fc-41cd-a439-5169f277a6f7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:46.0534912Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"d823be24-8885-4d7d-976a-5123a3aa714d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/d823be24-8885-4d7d-976a-5123a3aa714d/ticks/636910484257484843","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"cea6aa71-2554-4063-8fda-bd93246dc764","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"574b6c72-3eb9-4b75-9e78-5e15c309476e\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"03b3363a-3a57-46d3-aef8-2b81cf3c077f\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.11\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:45.7484843Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"cbc0efe9-c7c5-4f81-9a07-1a8242c21493","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5ee36e64-cec7-461a-8204-d7ce67e6e810","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/cbc0efe9-c7c5-4f81-9a07-1a8242c21493/ticks/636910484250685137","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"8c923b49-1160-45ba-9298-ecb91001ab4c","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:45.0685137Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9c31acc3-cef0-459f-89f3-5d179f3177e7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/9c31acc3-cef0-459f-89f3-5d179f3177e7/ticks/636910484215734938","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4338bcdf-f334-4017-b696-e4a4d67213e4","responseBody":"{\"name\":\"fromimage2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"50d91257-f52d-44b9-954c-9d59d1bdea09\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"82643170-82e1-43dd-8635-21e95891d3d3\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:37:02.5799487Z","submissionTimestamp":"2019-04-30T01:37:25.0702572Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b1306944-8bee-404c-85c8-3a9de0010a63","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/b1306944-8bee-404c-85c8-3a9de0010a63/ticks/636921850111680756","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"2f01a34a-19e3-44bb-80d9-8448d845a515"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:51.1680756Z","submissionTimestamp":"2019-04-30T01:37:19.1517181Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"508f5b33-a45e-4f6f-b953-53fba2034e61","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/508f5b33-a45e-4f6f-b953-53fba2034e61/ticks/636921850109580704","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.9580704Z","submissionTimestamp":"2019-04-30T01:37:19.1517181Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"d7ad154c-07e2-4ac9-865b-74c911f218f1","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/d7ad154c-07e2-4ac9-865b-74c911f218f1/ticks/636921850105864957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"95fa9211-2136-416e-bb63-7e19ea406777"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.5864957Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"efeca1e9-fb3c-4b25-bbbe-353d02486f10","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab/events/efeca1e9-fb3c-4b25-bbbe-353d02486f10/ticks/636921850105497523","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"be5f8fdd-cc15-48cd-857b-126a08045391","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"680065b7-e994-4723-b831-778aa1fee114"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.5497523Z","submissionTimestamp":"2019-04-30T01:37:14.1243712Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"7881ce0c-59a9-4839-a3a0-aab856704e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/7881ce0c-59a9-4839-a3a0-aab856704e95/ticks/636921850104416183","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f0df2b5b-a6fa-404c-85b3-bd31f3529170"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:36:50.4416183Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b997c8ad-e46d-4f4f-9f31-52fbad5317d5","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab/events/b997c8ad-e46d-4f4f-9f31-52fbad5317d5/ticks/636921850103297490","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"be5f8fdd-cc15-48cd-857b-126a08045391","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.329749Z","submissionTimestamp":"2019-04-30T01:37:14.1243712Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c/events/2fac5bf9-31b5-4c8c-af11-ac7b4e7eccc3/ticks/636921850103164947","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"1dbba3a2-545f-4dbb-bda0-1337e4ac5b5e","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.3164947Z","submissionTimestamp":"2019-04-30T01:37:16.0899957Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"88bba827-2104-45e8-bf49-9b1a25c59973","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e2ff2e0c-9d4f-4b15-8b48-17a993ec2e18","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f/events/88bba827-2104-45e8-bf49-9b1a25c59973/ticks/636921850102416119","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"0d1b195f-218e-4373-a6f2-38dc53da5c09","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:50.2416119Z","submissionTimestamp":"2019-04-30T01:37:13.1099197Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"2a32054c-84d6-4b19-84c0-1dbfe4510c03","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"6e1367ab-807f-4bc0-806e-4d31987cb8c6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2/events/2a32054c-84d6-4b19-84c0-1dbfe4510c03/ticks/636921850090074564","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"f04397e6-70d5-4598-900c-d0b7df8c0b03","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:49.0074564Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"3486736a-de9b-450f-8bef-c311d38af3bf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b995a8d1-5103-4a26-9660-5ce4bd7c03b7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/3486736a-de9b-450f-8bef-c311d38af3bf/ticks/636921850081624453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4bd5e419-50cf-4e7b-8c2e-743b3f1b1626","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"b4c69492-8193-4de0-b978-ee1cb8b0a81a","responseBody":"{\"name\":\"fromimage2VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\",\"etag\":\"W/\\\"9449d36b-ecb6-4a95-8461-0ecc31c7bcfe\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"075e2c91-64b4-4d8d-a2ce-506209d344f5\",\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\",\"etag\":\"W/\\\"9449d36b-ecb6-4a95-8461-0ecc31c7bcfe\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.8\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:48.1624453Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"b543df9b-cf47-439e-9396-480359ec1330","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/b543df9b-cf47-439e-9396-480359ec1330/ticks/636921850078252345","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0407a496-aab3-4558-9301-d6f78b43c66f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.8252345Z","submissionTimestamp":"2019-04-30T01:37:09.0722251Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"69eff86c-f61d-46ff-913d-fea9cbc3f31e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/69eff86c-f61d-46ff-913d-fea9cbc3f31e/ticks/636921850072568648","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"29bcafcc-76c5-4781-b3bb-aff95b0f9500","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:47.2568648Z","submissionTimestamp":"2019-04-30T01:37:07.0675289Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"07ca9924-5a86-4a12-b841-36905bd25749","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b995a8d1-5103-4a26-9660-5ce4bd7c03b7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/events/07ca9924-5a86-4a12-b841-36905bd25749/ticks/636921850066043269","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"4bd5e419-50cf-4e7b-8c2e-743b3f1b1626","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigfromimage2\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:46.6043269Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"ecdec5ab-25b0-4bc5-8565-a7135e2dd00e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/ecdec5ab-25b0-4bc5-8565-a7135e2dd00e/ticks/636921850023391299","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0708f791-4c2f-4a70-9700-af802872308d","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"b7d817ca-a628-4887-92c9-271d8ed1e91d\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31fd85d8-e721-4e27-b9e9-8b3cb3eb2382\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:42.3391299Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a381b05e-e0bf-4ccc-9c76-3c3702eb5e52","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/a381b05e-e0bf-4ccc-9c76-3c3702eb5e52/ticks/636921850021341583","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:42.1341583Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"6d8866d8-cd63-4ca7-ab92-007068ba8292","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80b1034b-60a4-4b31-a18b-07fb39a61cf9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/6d8866d8-cd63-4ca7-ab92-007068ba8292/ticks/636921850011041166","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"69d8ff89-2ff0-45af-bd99-822c7f803c1c","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"867874a2-6fc6-4ebd-bfbb-33e9822fc694","responseBody":"{\"name\":\"fromimage2NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a80924de-96f0-4637-9607-06ce871605ad\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"bb0a419c-8b45-4aad-aa59-f24eb6b31c36\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.5734938Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"377928e5-3f04-4cf1-88f0-d67a39c60b7c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/377928e5-3f04-4cf1-88f0-d67a39c60b7c/ticks/636910484213384953","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"042e4aab-f76c-47cc-8de3-d82d5e3aa7ae","responseBody":"{\"name\":\"fromimage2PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\",\"etag\":\"W/\\\"0b5424cc-7805-47b9-8b13-eccfea7f69b1\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e9443943-1117-4136-9d55-02bcc9f2a19d\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:41.3384953Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"4629b04c-a1a7-4a64-bf63-f1a3899dbacb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/4629b04c-a1a7-4a64-bf63-f1a3899dbacb/ticks/636910484212535136","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:41.2535136Z","submissionTimestamp":"2019-04-16T21:54:01.0793855Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"14adf001-5242-4bc8-9c50-17a52a95409b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"07b1e378-1b40-47b9-a57c-b4aa866892b5","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/14adf001-5242-4bc8-9c50-17a52a95409b/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"6a00cb6f-f68c-48d3-a2a0-2d8ded637e1e","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7fa0dd4a-c112-4788-a9d3-a7733e5c82aa","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/9a28bbf3-6eea-4f69-b04a-9f9dbffc2e27/ticks/636910484203735111","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"eeae6dfd-84ac-4200-80c2-6313a88d8717","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:40.3735111Z","submissionTimestamp":"2019-04-16T21:54:01.0783857Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"8657cc94-5289-44db-8afa-2e59c35c0c72","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/8657cc94-5289-44db-8afa-2e59c35c0c72/ticks/636910484193424922","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:41.1041166Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"0329174b-1ac3-4966-9ee9-863ffab47f8c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b5385437-16ce-4834-a3c7-1ebbdca5a5e0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP/events/0329174b-1ac3-4966-9ee9-863ffab47f8c/ticks/636921849989885480","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"09d0352c-a708-42c6-84d3-dc115b3d5fd5","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.988548Z","submissionTimestamp":"2019-04-30T01:37:09.0911384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"067c234f-bf21-4584-824e-7463ceb8e120","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80b1034b-60a4-4b31-a18b-07fb39a61cf9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG/events/067c234f-bf21-4584-824e-7463ceb8e120/ticks/636921849989185892","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"69d8ff89-2ff0-45af-bd99-822c7f803c1c","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:38.9185892Z","submissionTimestamp":"2019-04-30T01:36:59.0784678Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"e8143a94-229d-440c-85ba-7a76cc7340fc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/e8143a94-229d-440c-85ba-7a76cc7340fc/ticks/636921849932705086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:53:39.3424922Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","description":"","eventDataId":"29599085-af26-4684-8c0e-3d5f88ecd771","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"14490c90-6092-11e9-8601-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa/events/29599085-af26-4684-8c0e-3d5f88ecd771/ticks/636910484163024831","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:53:36.3024831Z","submissionTimestamp":"2019-04-16T21:53:56.1037698Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:36:33.2705086Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","description":"","eventDataId":"a75061a5-42b9-4abc-9af4-42c0e55b45f1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60036648-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs/events/a75061a5-42b9-4abc-9af4-42c0e55b45f1/ticks/636921849902505356","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:36:30.2505356Z","submissionTimestamp":"2019-04-30T01:36:52.0847339Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '96718' + - '93176' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:31 GMT + - Tue, 30 Apr 2019 01:38:24 GMT expires: - '-1' pragma: @@ -10391,10 +10966,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461552674760715?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450186934851661?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -10406,7 +10981,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:39 GMT + - Tue, 30 Apr 2019 01:38:33 GMT expires: - '-1' pragma: @@ -10434,13 +11009,13 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","name":"vm_deploy_17M9Ws67E6bIEMh87AcspE4I9eOzFcXa","properties":{"templateHash":"17392023033365978636","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:55:18.6048804Z","duration":"PT1M40.603325S","correlationId":"7d3f540b-470b-4ce4-bd43-d59e47ebb397","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"fromimage2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"fromimage2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"fromimage2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","name":"vm_deploy_U8XkmM6auVxWt9IfBO0wRQlF3JBh2RVs","properties":{"templateHash":"13910964036566305955","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:38:17.288313Z","duration":"PT1M45.2958548S","correlationId":"93b5cab6-5b26-43eb-a6cf-ada34f238b55","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"fromimage2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"fromimage2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"fromimage2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"fromimage2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP"}]}}' headers: cache-control: - no-cache @@ -10449,7 +11024,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:39 GMT + - Tue, 30 Apr 2019 01:38:33 GMT expires: - '-1' pragma: @@ -10477,34 +11052,34 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"8fcb5177-d9f6-4345-9ed1-f9b12e8a6a42\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"8dd97348-5423-454b-aa49-ca78a7d17f5d\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6\",\r\ + \ \"name\": \"fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f\",\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_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\":\ \ \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c\"\ \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc\",\r\n \ + name\": \"fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\ \n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab\"\ \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"fromimage2\",\r\n \"adminUsername\": \"sdk-test-admin\"\ @@ -10516,30 +11091,30 @@ interactions: }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ : {\r\n \"computerName\": \"fromimage2\",\r\n \"osName\": \"ubuntu\"\ ,\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"\ - vmAgentVersion\": \"2.2.38\",\r\n \"statuses\": [\r\n {\r\n\ + vmAgentVersion\": \"2.2.40\",\r\n \"statuses\": [\r\n {\r\n\ \ \"code\": \"ProvisioningState/succeeded\",\r\n \"\ level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \ \"message\": \"Guest Agent is running\",\r\n \"time\": \"\ - 2019-04-16T21:55:40+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\"\ + 2019-04-30T01:38:34+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\"\ : []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\"\ - : \"fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6\",\r\n \"statuses\"\ + : \"fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f\",\r\n \"statuses\"\ : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\ - : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-16T21:53:47.9286562+00:00\"\ + : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-30T01:36:51.8804607+00:00\"\ \r\n }\r\n ]\r\n },\r\n {\r\n \"\ - name\": \"fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2\",\r\n \ + name\": \"fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c\",\r\n \ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\ - : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-16T21:53:47.9286562+00:00\"\ + : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-30T01:36:51.8804607+00:00\"\ \r\n }\r\n ]\r\n },\r\n {\r\n \"\ - name\": \"fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc\",\r\n \ + name\": \"fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab\",\r\n \ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\ - : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-16T21:53:47.9286562+00:00\"\ + : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-30T01:36:51.8804607+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\": \"2019-04-16T21:55:16.0223943+00:00\"\ + \ succeeded\",\r\n \"time\": \"2019-04-30T01:38:13.054907+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\"\ @@ -10549,11 +11124,11 @@ interactions: cache-control: - no-cache content-length: - - '5157' + - '5156' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:40 GMT + - Tue, 30 Apr 2019 01:38:35 GMT expires: - '-1' pragma: @@ -10570,7 +11145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31788 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31971 status: code: 200 message: OK @@ -10588,8 +11163,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -10597,23 +11172,23 @@ interactions: response: body: string: "{\r\n \"name\": \"fromimage2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic\"\ - ,\r\n \"etag\": \"W/\\\"3684d5d1-a3b0-42c7-9e46-4c180b737cf3\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8a3ad853-b299-4d17-9c2b-c0fc6ce8bf71\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"574b6c72-3eb9-4b75-9e78-5e15c309476e\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"075e2c91-64b4-4d8d-a2ce-506209d344f5\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigfromimage2\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\"\ - ,\r\n \"etag\": \"W/\\\"3684d5d1-a3b0-42c7-9e46-4c180b737cf3\\\"\"\ + ,\r\n \"etag\": \"W/\\\"8a3ad853-b299-4d17-9c2b-c0fc6ce8bf71\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"privateIPAddress\": \"10.0.0.11\",\r\n \"privateIPAllocationMethod\"\ + ,\r\n \"privateIPAddress\": \"10.0.0.8\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"\ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"\ \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\": \"d0nsyocv4zbudeif4fuec1hbwa.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-30-61-A2\",\r\n \"enableAcceleratedNetworking\"\ + internalDomainNameSuffix\": \"hadqnizctluu3be5eriq5cf3la.dx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-32-EB-94\",\r\n \"enableAcceleratedNetworking\"\ : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/fromimage2NSG\"\ \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ @@ -10624,13 +11199,13 @@ interactions: cache-control: - no-cache content-length: - - '2653' + - '2652' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:40 GMT + - Tue, 30 Apr 2019 01:38:36 GMT etag: - - W/"3684d5d1-a3b0-42c7-9e46-4c180b737cf3" + - W/"8a3ad853-b299-4d17-9c2b-c0fc6ce8bf71" expires: - '-1' pragma: @@ -10663,8 +11238,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -10672,10 +11247,10 @@ interactions: response: body: string: "{\r\n \"name\": \"fromimage2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/fromimage2PublicIP\"\ - ,\r\n \"etag\": \"W/\\\"e50c7d9e-6297-4deb-8607-2e0f975f6ee5\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"855e0884-29a2-4bc3-b347-24eab8e6ecbc\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e9443943-1117-4136-9d55-02bcc9f2a19d\"\ - ,\r\n \"ipAddress\": \"138.91.142.50\",\r\n \"publicIPAddressVersion\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"31fd85d8-e721-4e27-b9e9-8b3cb3eb2382\"\ + ,\r\n \"ipAddress\": \"104.42.77.242\",\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_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\"\ @@ -10690,9 +11265,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:41 GMT + - Tue, 30 Apr 2019 01:38:36 GMT etag: - - W/"e50c7d9e-6297-4deb-8607-2e0f975f6ee5" + - W/"855e0884-29a2-4bc3-b347-24eab8e6ecbc" expires: - '-1' pragma: @@ -10725,34 +11300,34 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/fromimage2?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"8fcb5177-d9f6-4345-9ed1-f9b12e8a6a42\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"8dd97348-5423-454b-aa49-ca78a7d17f5d\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6\",\r\ + \ \"name\": \"fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f\",\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_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage2_disk1_d28000c4f17147ce8444bb9aa2f01ec6\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage2_disk1_0c72c7b93da54a5e87dd35552c01a66f\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\":\ \ \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage2_disk2_bcf6210a12a04926b730a5af65a444f2\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage2_disk2_2f1f55c10f584354b78f2c13061ebf2c\"\ \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc\",\r\n \ + name\": \"fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab\",\r\n \ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\ \n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage2_disk3_35a5ccaebc044cd7aece599eee0668fc\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/fromimage2_disk3_3afc8ed1c1e2430e9174d3c91dba19ab\"\ \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"fromimage2\",\r\n \"adminUsername\": \"sdk-test-admin\"\ @@ -10773,7 +11348,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:41 GMT + - Tue, 30 Apr 2019 01:38:36 GMT expires: - '-1' pragma: @@ -10790,7 +11365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3975,Microsoft.Compute/LowCostGet30Min;31787 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31970 status: code: 200 message: OK @@ -10809,15 +11384,15 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:39:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -10826,7 +11401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:42 GMT + - Tue, 30 Apr 2019 01:38:37 GMT expires: - '-1' pragma: @@ -10909,13 +11484,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:42 GMT + - Tue, 30 Apr 2019 01:38:37 GMT etag: - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' expires: - - Tue, 16 Apr 2019 22:00:42 GMT + - Tue, 30 Apr 2019 01:43:37 GMT source-age: - - '155' + - '255' strict-transport-security: - max-age=31536000 vary: @@ -10929,17 +11504,17 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 02295e75a3b2706f095613628294d96eda4f4499 + - 981babdb2b4b2db356913f932fcc07d3219ce921 x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - CAA6:4B1D:3E49C3:437C45:5CB64EC3 + - FD42:7B31:8F483:A667D:5CC7A61C x-served-by: - - cache-sea1044-SEA + - cache-dfw18626-DFW x-timer: - - S1555451743.781058,VS0,VE1 + - S1556588318.952057,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -10960,12 +11535,12 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ @@ -10973,29 +11548,30 @@ interactions: \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ \ \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n\ \ \"lun\": 0,\r\n \"diskSizeGB\": 1,\r\n \"managedDisk\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n\ \ \"diskSizeGB\": 1,\r\n \"managedDisk\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ ,\r\n \"name\": \"img-from-managed\"\r\n}" headers: cache-control: - no-cache content-length: - - '2083' + - '2114' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:42 GMT + - Tue, 30 Apr 2019 01:38:38 GMT expires: - '-1' pragma: @@ -11012,7 +11588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;355,Microsoft.Compute/GetImages30Min;1763 + - Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1765 status: code: 200 message: OK @@ -11031,12 +11607,12 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ @@ -11044,29 +11620,30 @@ interactions: \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ \ \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n\ \ \"lun\": 0,\r\n \"diskSizeGB\": 1,\r\n \"managedDisk\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n\ \ \"diskSizeGB\": 1,\r\n \"managedDisk\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ ,\r\n \"name\": \"img-from-managed\"\r\n}" headers: cache-control: - no-cache content-length: - - '2083' + - '2114' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:42 GMT + - Tue, 30 Apr 2019 01:38:38 GMT expires: - '-1' pragma: @@ -11083,7 +11660,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;354,Microsoft.Compute/GetImages30Min;1762 + - Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1764 status: code: 200 message: OK @@ -11102,8 +11679,8 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -11112,15 +11689,15 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm-unmanaged-diskVNET\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\"\ - ,\r\n \"etag\": \"W/\\\"d9c968ea-15dd-4541-8932-dfb947a28528\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"83ac3af4-22c1-429f-a85a-cb62f26942ab\\\"\",\r\ \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"382c9b1e-f655-4143-9105-f168416ce1b0\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3060738-9a22-4ee9-849f-24510f88bd58\"\ ,\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\": \"vm-unmanaged-diskSubnet\",\r\ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"\ - ,\r\n \"etag\": \"W/\\\"d9c968ea-15dd-4541-8932-dfb947a28528\\\"\ + ,\r\n \"etag\": \"W/\\\"83ac3af4-22c1-429f-a85a-cb62f26942ab\\\"\ \",\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\"\ @@ -11131,9 +11708,9 @@ interactions: \r\n },\r\n {\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\"\ \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1e8b2Nic/ipConfigurations/vmss1e8b2IPConfig\"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss180e0Nic/ipConfigurations/vmss180e0IPConfig\"\ \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1e8b2Nic/ipConfigurations/vmss1e8b2IPConfig\"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss180e0Nic/ipConfigurations/vmss180e0IPConfig\"\ \r\n },\r\n {\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\"\ \r\n }\r\n ]\r\n },\r\n \ @@ -11149,7 +11726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:43 GMT + - Tue, 30 Apr 2019 01:38:38 GMT expires: - '-1' pragma: @@ -11217,26 +11794,26 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","name":"vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","properties":{"templateHash":"4446553922732161723","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:55:46.2913391Z","duration":"PT0.9146161S","correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm3PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm3"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","name":"vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","properties":{"templateHash":"15349835159270114301","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:38:41.9549579Z","duration":"PT1.1007108S","correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm3PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm3"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/operationStatuses/08586461551401009006?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/operationStatuses/08586450185646233767?api-version=2018-05-01 cache-control: - no-cache content-length: - - '2402' + - '2403' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:45 GMT + - Tue, 30 Apr 2019 01:38:41 GMT expires: - '-1' pragma: @@ -11246,7 +11823,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -11267,12 +11844,12 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A55%3A52Z%20and%20correlationId%20eq%20%27f4189349-fdd0-4ca4-a24c-b1007eeec5fe%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A38%3A49Z%20and%20correlationId%20eq%20%27e325c561-fdee-4660-bfca-3fd77ef5865b%27 response: body: string: '{"value":[]}' @@ -11284,7 +11861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:55:53 GMT + - Tue, 30 Apr 2019 01:38:49 GMT expires: - '-1' pragma: @@ -11319,24 +11896,28 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A56%3A02Z%20and%20correlationId%20eq%20%27f4189349-fdd0-4ca4-a24c-b1007eeec5fe%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A38%3A59Z%20and%20correlationId%20eq%20%27e325c561-fdee-4660-bfca-3fd77ef5865b%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"b879db4c-70c2-4a8f-92c5-0dd178b3d928","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/b879db4c-70c2-4a8f-92c5-0dd178b3d928/ticks/636921851190962397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:39.0962397Z","submissionTimestamp":"2019-04-30T01:38:50.1188765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '12' + - '3712' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:56:03 GMT + - Tue, 30 Apr 2019 01:38:59 GMT expires: - '-1' pragma: @@ -11371,73 +11952,55 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A56%3A13Z%20and%20correlationId%20eq%20%27f4189349-fdd0-4ca4-a24c-b1007eeec5fe%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"982296e0-ad5e-48cb-a895-176f3edbd374","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/982296e0-ad5e-48cb-a895-176f3edbd374/ticks/636910485581144106","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0c27b9b8-253a-46ee-ad7b-473404eb262a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.1144106Z","submissionTimestamp":"2019-04-16T21:56:11.0953021Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3c1e57f9-8ba2-4981-9961-fb4b3f5254e2","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/3c1e57f9-8ba2-4981-9961-fb4b3f5254e2/ticks/636910485575719525","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"a3423043-fff2-4047-aa41-e1285b9604ce"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5719525Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"aed37c04-031c-4bef-81d5-17789b0c727f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/aed37c04-031c-4bef-81d5-17789b0c727f/ticks/636910485574129910","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"337c7a48-3f78-4d2c-ae5e-e00dd4d2e3f7"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:57.412991Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"6ebd5203-731c-49c6-a302-f5934ce033a6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/6ebd5203-731c-49c6-a302-f5934ce033a6/ticks/636910485572879862","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.2879862Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6e19c6-f405-481e-ad7b-fc68f3e91006","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/ba6e19c6-f405-481e-ad7b-fc68f3e91006/ticks/636910485571369341","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1369341Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"8ab6ffa6-bf35-40e6-bc89-7550c28acce4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/8ab6ffa6-bf35-40e6-bc89-7550c28acce4/ticks/636910485565074705","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:56.5074705Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"17d19eb7-e37d-4137-84e4-ebc95eaf7d75","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/17d19eb7-e37d-4137-84e4-ebc95eaf7d75/ticks/636910485563425086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"ef34d99c-b5d4-4e00-b7de-728f79bbb5e8","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ddc06e37-9c35-4e27-ab0c-709777c2f3a1\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.7\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:56.3425086Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"a936c997-757b-4f52-89d4-81a355cca016","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/a936c997-757b-4f52-89d4-81a355cca016/ticks/636910485556825268","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:55.6825268Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3f85c787-563a-4556-8d46-c3b171c6ee64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3f85c787-563a-4556-8d46-c3b171c6ee64/ticks/636910485522407487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7660507d-c085-4819-b4e8-d77a8d9be179","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"d8cd10e4-51c3-4f15-9251-4dd225ebc3cb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f58b9be5-8540-498b-9df3-c2f2d1f1aff5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.2407487Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"1b1ef445-f401-4303-b130-5a73cfcd8c30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/1b1ef445-f401-4303-b130-5a73cfcd8c30/ticks/636910485521857446","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f405d547-cdd5-4636-9230-7e29628dd60e","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8da4f57-b778-4e05-99dc-b10ceaf15c94\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A39%3A10Z%20and%20correlationId%20eq%20%27e325c561-fdee-4660-bfca-3fd77ef5865b%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"75f09178-7980-45c1-9e9a-7bbbb9a789b3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/75f09178-7980-45c1-9e9a-7bbbb9a789b3/ticks/636921851270988595","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"be434c7e-7243-4a20-a58a-3611e70fc7de","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"27194346-8460-4f80-8ff5-3fc1eafaf18e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"fec6704f-451b-4ded-9897-64b6ccbe49c7\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:47.0988595Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"0f0a08d3-04b1-4606-b550-2aa266799a56","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/0f0a08d3-04b1-4606-b550-2aa266799a56/ticks/636921851269338559","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"5d941214-7bbc-41ef-86dd-ebeb32c5d001","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a90d562e-90ac-4a50-9331-e80cc7f91025\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.1857446Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3954fd73-d2ec-4d31-970c-11bceb02f282","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3954fd73-d2ec-4d31-970c-11bceb02f282/ticks/636910485521607485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:52.1607485Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"01111053-a4cd-4a11-82bd-4473ee667d09","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/01111053-a4cd-4a11-82bd-4473ee667d09/ticks/636910485465079890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:46.9338559Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"de7b3279-8db2-405c-b018-9b5180aa03a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/de7b3279-8db2-405c-b018-9b5180aa03a9/ticks/636921851268438358","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:46.8438358Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"72fed6da-4e95-4ace-b9ef-5b002bed95c7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/72fed6da-4e95-4ace-b9ef-5b002bed95c7/ticks/636921851236275225","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.6275225Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f344c2c4-bb6f-447b-b8f8-10ab3137655b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/f344c2c4-bb6f-447b-b8f8-10ab3137655b/ticks/636921851234075203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.4075203Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"46282590-372d-4510-b0d8-a4c69a7163fd","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/46282590-372d-4510-b0d8-a4c69a7163fd/ticks/636921851221512397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:46.507989Z","submissionTimestamp":"2019-04-16T21:56:09.0663565Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6a8267-d352-4aa1-905f-fb58464af7d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/ba6a8267-d352-4aa1-905f-fb58464af7d4/ticks/636910485436480075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:43.6480075Z","submissionTimestamp":"2019-04-16T21:56:09.0653567Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:42.1512397Z","submissionTimestamp":"2019-04-30T01:39:00.0957365Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"b879db4c-70c2-4a8f-92c5-0dd178b3d928","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/b879db4c-70c2-4a8f-92c5-0dd178b3d928/ticks/636921851190962397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:39.0962397Z","submissionTimestamp":"2019-04-30T01:38:50.1188765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '55399' + - '32853' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:56:14 GMT + - Tue, 30 Apr 2019 01:39:10 GMT expires: - '-1' pragma: @@ -11470,10 +12033,10 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461551401009006?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450185646233767?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -11485,7 +12048,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:56:15 GMT + - Tue, 30 Apr 2019 01:39:11 GMT expires: - '-1' pragma: @@ -11516,97 +12079,97 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A56%3A23Z%20and%20correlationId%20eq%20%27f4189349-fdd0-4ca4-a24c-b1007eeec5fe%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ed73bd1a-ace9-46aa-8c83-9f57dfd83038","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/ed73bd1a-ace9-46aa-8c83-9f57dfd83038/ticks/636910485586092620","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b446a22e-df64-45b8-b1ed-501218484a03","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.609262Z","submissionTimestamp":"2019-04-16T21:56:17.1254159Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"982296e0-ad5e-48cb-a895-176f3edbd374","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/982296e0-ad5e-48cb-a895-176f3edbd374/ticks/636910485581144106","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0c27b9b8-253a-46ee-ad7b-473404eb262a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.1144106Z","submissionTimestamp":"2019-04-16T21:56:11.0953021Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d83537b0-6f54-436e-81d2-35e2cabd4555","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/d83537b0-6f54-436e-81d2-35e2cabd4555/ticks/636910485575785264","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b6185b98-9de5-41b7-8cd1-272dca7402a5"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5785264Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"037ff8a6-9fc4-4965-86d5-4252252dd4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/037ff8a6-9fc4-4965-86d5-4252252dd4ec/ticks/636910485575762435","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"be40c9eb-fa5b-4736-9c62-bf4f3cc760f8"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5762435Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3eb69f95-6434-40b5-90ce-ecc5ffe230e0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/3eb69f95-6434-40b5-90ce-ecc5ffe230e0/ticks/636910485575748999","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"9e83dd5e-4757-49f7-8c1a-29069a67183b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5748999Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3c1e57f9-8ba2-4981-9961-fb4b3f5254e2","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/3c1e57f9-8ba2-4981-9961-fb4b3f5254e2/ticks/636910485575719525","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"a3423043-fff2-4047-aa41-e1285b9604ce"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5719525Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"aed37c04-031c-4bef-81d5-17789b0c727f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/aed37c04-031c-4bef-81d5-17789b0c727f/ticks/636910485574129910","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"337c7a48-3f78-4d2c-ae5e-e00dd4d2e3f7"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:57.412991Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"6ebd5203-731c-49c6-a302-f5934ce033a6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/6ebd5203-731c-49c6-a302-f5934ce033a6/ticks/636910485572879862","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.2879862Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"2fe4cf55-9060-4653-a483-c032405b54f3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/2fe4cf55-9060-4653-a483-c032405b54f3/ticks/636910485571898891","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1898891Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"b50c38c7-5aeb-421c-845e-8813dda60601","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/b50c38c7-5aeb-421c-845e-8813dda60601/ticks/636910485571811972","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1811972Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6e19c6-f405-481e-ad7b-fc68f3e91006","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/ba6e19c6-f405-481e-ad7b-fc68f3e91006/ticks/636910485571369341","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1369341Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"db96c0f4-c181-4dbb-a319-cde67c56d947","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/db96c0f4-c181-4dbb-a319-cde67c56d947/ticks/636910485571284809","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1284809Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"8ab6ffa6-bf35-40e6-bc89-7550c28acce4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/8ab6ffa6-bf35-40e6-bc89-7550c28acce4/ticks/636910485565074705","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:56.5074705Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"17d19eb7-e37d-4137-84e4-ebc95eaf7d75","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/17d19eb7-e37d-4137-84e4-ebc95eaf7d75/ticks/636910485563425086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"ef34d99c-b5d4-4e00-b7de-728f79bbb5e8","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ddc06e37-9c35-4e27-ab0c-709777c2f3a1\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.7\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:56.3425086Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"a936c997-757b-4f52-89d4-81a355cca016","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/a936c997-757b-4f52-89d4-81a355cca016/ticks/636910485556825268","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:55.6825268Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3f85c787-563a-4556-8d46-c3b171c6ee64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3f85c787-563a-4556-8d46-c3b171c6ee64/ticks/636910485522407487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7660507d-c085-4819-b4e8-d77a8d9be179","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"d8cd10e4-51c3-4f15-9251-4dd225ebc3cb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f58b9be5-8540-498b-9df3-c2f2d1f1aff5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.2407487Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"1b1ef445-f401-4303-b130-5a73cfcd8c30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/1b1ef445-f401-4303-b130-5a73cfcd8c30/ticks/636910485521857446","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f405d547-cdd5-4636-9230-7e29628dd60e","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8da4f57-b778-4e05-99dc-b10ceaf15c94\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A39%3A20Z%20and%20correlationId%20eq%20%27e325c561-fdee-4660-bfca-3fd77ef5865b%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"43606b75-9cfa-49de-8963-79243b06723d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/43606b75-9cfa-49de-8963-79243b06723d/ticks/636921851371719890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"c773890b-489f-4fb2-99ed-920f02767cd6"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:57.171989Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"90f19cf1-32e7-4059-9ace-a0988be544e9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/90f19cf1-32e7-4059-9ace-a0988be544e9/ticks/636921851369670158","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.9670158Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"3df9d0e9-a163-4ec4-9ba6-12664d432edc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/3df9d0e9-a163-4ec4-9ba6-12664d432edc/ticks/636921851368814243","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d60d8298-9313-49f1-af9d-0cc72c35d2fe"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.8814243Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"40bb695c-a973-428e-a3dd-1e120aa1562e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/40bb695c-a973-428e-a3dd-1e120aa1562e/ticks/636921851367432957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f12cb0d2-4eca-429b-94d0-290b83dee1fd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7432957Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f59a5dbb-558c-414b-bb16-09827c14abcf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/f59a5dbb-558c-414b-bb16-09827c14abcf/ticks/636921851367038575","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"53a0ee37-4e2b-4e19-bb6a-20dee3caa41c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7038575Z","submissionTimestamp":"2019-04-30T01:39:14.0968095Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60/ticks/636921851366920602","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"47bfc8c2-6f9e-4415-811d-dfdec0f4740e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.6920602Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"57d87acc-5e9d-47c0-92d4-e6d2dddaf144","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/57d87acc-5e9d-47c0-92d4-e6d2dddaf144/ticks/636921851366114272","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.6114272Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"42970ab0-61a5-4540-8082-cc61f13dbc51","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/42970ab0-61a5-4540-8082-cc61f13dbc51/ticks/636921851365632788","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5632788Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4010cf11-285b-4be7-a553-2482fd339cc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/4010cf11-285b-4be7-a553-2482fd339cc1/ticks/636921851365238208","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5238208Z","submissionTimestamp":"2019-04-30T01:39:14.0958083Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f8cb9ee1-f174-478f-97bb-1463acae6299","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/f8cb9ee1-f174-478f-97bb-1463acae6299/ticks/636921851365170561","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5170561Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"68192493-e9b6-4f18-87df-796c6817ee4e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/68192493-e9b6-4f18-87df-796c6817ee4e/ticks/636921851348155649","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:54.8155649Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71/ticks/636921851339994151","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c0939be3-1ab2-455c-a55e-b3963af34bce","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f96a67fa-c2f6-4b75-92df-645861da5fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.9\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:53.9994151Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"cedcf517-e1d9-4ed3-883d-b1487acbe40c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/cedcf517-e1d9-4ed3-883d-b1487acbe40c/ticks/636921851326528534","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d396f903-daf0-4b06-a2f4-19ba9f834fcf","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.6528534Z","submissionTimestamp":"2019-04-30T01:39:12.0911982Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"c976b137-b10d-4e0c-9c77-d5e19ffe95d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/c976b137-b10d-4e0c-9c77-d5e19ffe95d3/ticks/636921851324777980","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.477798Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"22856551-019f-48bb-b62a-4a7be93568ab","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/22856551-019f-48bb-b62a-4a7be93568ab/ticks/636921851319580640","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b5491954-faf0-4406-95cc-d0c5596527b6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:51.958064Z","submissionTimestamp":"2019-04-30T01:39:19.069773Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"75f09178-7980-45c1-9e9a-7bbbb9a789b3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/75f09178-7980-45c1-9e9a-7bbbb9a789b3/ticks/636921851270988595","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"be434c7e-7243-4a20-a58a-3611e70fc7de","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"27194346-8460-4f80-8ff5-3fc1eafaf18e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"fec6704f-451b-4ded-9897-64b6ccbe49c7\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:47.0988595Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"0f0a08d3-04b1-4606-b550-2aa266799a56","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/0f0a08d3-04b1-4606-b550-2aa266799a56/ticks/636921851269338559","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"5d941214-7bbc-41ef-86dd-ebeb32c5d001","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a90d562e-90ac-4a50-9331-e80cc7f91025\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.1857446Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3954fd73-d2ec-4d31-970c-11bceb02f282","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3954fd73-d2ec-4d31-970c-11bceb02f282/ticks/636910485521607485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:52.1607485Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"47ea11cb-aa63-4eca-a101-fcdc9e383efa","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/47ea11cb-aa63-4eca-a101-fcdc9e383efa/ticks/636910485508373075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8373075Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b/ticks/636910485508223062","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8223062Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"01111053-a4cd-4a11-82bd-4473ee667d09","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/01111053-a4cd-4a11-82bd-4473ee667d09/ticks/636910485465079890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:46.9338559Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"de7b3279-8db2-405c-b018-9b5180aa03a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/de7b3279-8db2-405c-b018-9b5180aa03a9/ticks/636921851268438358","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:46.8438358Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"72fed6da-4e95-4ace-b9ef-5b002bed95c7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/72fed6da-4e95-4ace-b9ef-5b002bed95c7/ticks/636921851236275225","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.6275225Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f344c2c4-bb6f-447b-b8f8-10ab3137655b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/f344c2c4-bb6f-447b-b8f8-10ab3137655b/ticks/636921851234075203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.4075203Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"46282590-372d-4510-b0d8-a4c69a7163fd","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/46282590-372d-4510-b0d8-a4c69a7163fd/ticks/636921851221512397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:46.507989Z","submissionTimestamp":"2019-04-16T21:56:09.0663565Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6a8267-d352-4aa1-905f-fb58464af7d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/ba6a8267-d352-4aa1-905f-fb58464af7d4/ticks/636910485436480075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:43.6480075Z","submissionTimestamp":"2019-04-16T21:56:09.0653567Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:42.1512397Z","submissionTimestamp":"2019-04-30T01:39:00.0957365Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"b879db4c-70c2-4a8f-92c5-0dd178b3d928","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/b879db4c-70c2-4a8f-92c5-0dd178b3d928/ticks/636921851190962397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:39.0962397Z","submissionTimestamp":"2019-04-30T01:38:50.1188765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '83966' + - '83984' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:56:24 GMT + - Tue, 30 Apr 2019 01:39:20 GMT expires: - '-1' pragma: @@ -11641,101 +12204,101 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A56%3A34Z%20and%20correlationId%20eq%20%27f4189349-fdd0-4ca4-a24c-b1007eeec5fe%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A39%3A31Z%20and%20correlationId%20eq%20%27e325c561-fdee-4660-bfca-3fd77ef5865b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d591d9ae-c520-44f8-890a-908ac291212a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/d591d9ae-c520-44f8-890a-908ac291212a/ticks/636910485683053009","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"55ef4862-6f19-4d29-a412-4fe70fd01bf7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"9f888478-96cf-493b-9238-d91fd359b3f6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/9f888478-96cf-493b-9238-d91fd359b3f6/ticks/636921851494420611","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fcb63f5a-572a-432e-bdae-ba0cbb5b5f71","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:56:08.3053009Z","submissionTimestamp":"2019-04-16T21:56:24.1460814Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ed73bd1a-ace9-46aa-8c83-9f57dfd83038","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/ed73bd1a-ace9-46aa-8c83-9f57dfd83038/ticks/636910485586092620","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b446a22e-df64-45b8-b1ed-501218484a03","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.609262Z","submissionTimestamp":"2019-04-16T21:56:17.1254159Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"982296e0-ad5e-48cb-a895-176f3edbd374","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/982296e0-ad5e-48cb-a895-176f3edbd374/ticks/636910485581144106","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0c27b9b8-253a-46ee-ad7b-473404eb262a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.1144106Z","submissionTimestamp":"2019-04-16T21:56:11.0953021Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d83537b0-6f54-436e-81d2-35e2cabd4555","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/d83537b0-6f54-436e-81d2-35e2cabd4555/ticks/636910485575785264","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b6185b98-9de5-41b7-8cd1-272dca7402a5"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5785264Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"037ff8a6-9fc4-4965-86d5-4252252dd4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/037ff8a6-9fc4-4965-86d5-4252252dd4ec/ticks/636910485575762435","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"be40c9eb-fa5b-4736-9c62-bf4f3cc760f8"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5762435Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3eb69f95-6434-40b5-90ce-ecc5ffe230e0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/3eb69f95-6434-40b5-90ce-ecc5ffe230e0/ticks/636910485575748999","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"9e83dd5e-4757-49f7-8c1a-29069a67183b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5748999Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3c1e57f9-8ba2-4981-9961-fb4b3f5254e2","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/3c1e57f9-8ba2-4981-9961-fb4b3f5254e2/ticks/636910485575719525","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"a3423043-fff2-4047-aa41-e1285b9604ce"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5719525Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"aed37c04-031c-4bef-81d5-17789b0c727f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/aed37c04-031c-4bef-81d5-17789b0c727f/ticks/636910485574129910","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"337c7a48-3f78-4d2c-ae5e-e00dd4d2e3f7"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:57.412991Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"6ebd5203-731c-49c6-a302-f5934ce033a6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/6ebd5203-731c-49c6-a302-f5934ce033a6/ticks/636910485572879862","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.2879862Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"2fe4cf55-9060-4653-a483-c032405b54f3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/2fe4cf55-9060-4653-a483-c032405b54f3/ticks/636910485571898891","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1898891Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"b50c38c7-5aeb-421c-845e-8813dda60601","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/b50c38c7-5aeb-421c-845e-8813dda60601/ticks/636910485571811972","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1811972Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6e19c6-f405-481e-ad7b-fc68f3e91006","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/ba6e19c6-f405-481e-ad7b-fc68f3e91006/ticks/636910485571369341","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1369341Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"db96c0f4-c181-4dbb-a319-cde67c56d947","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/db96c0f4-c181-4dbb-a319-cde67c56d947/ticks/636910485571284809","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1284809Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"8ab6ffa6-bf35-40e6-bc89-7550c28acce4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/8ab6ffa6-bf35-40e6-bc89-7550c28acce4/ticks/636910485565074705","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:56.5074705Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"17d19eb7-e37d-4137-84e4-ebc95eaf7d75","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/17d19eb7-e37d-4137-84e4-ebc95eaf7d75/ticks/636910485563425086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"ef34d99c-b5d4-4e00-b7de-728f79bbb5e8","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ddc06e37-9c35-4e27-ab0c-709777c2f3a1\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.7\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:56.3425086Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"a936c997-757b-4f52-89d4-81a355cca016","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/a936c997-757b-4f52-89d4-81a355cca016/ticks/636910485556825268","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:55.6825268Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3f85c787-563a-4556-8d46-c3b171c6ee64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3f85c787-563a-4556-8d46-c3b171c6ee64/ticks/636910485522407487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7660507d-c085-4819-b4e8-d77a8d9be179","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"d8cd10e4-51c3-4f15-9251-4dd225ebc3cb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f58b9be5-8540-498b-9df3-c2f2d1f1aff5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.2407487Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"1b1ef445-f401-4303-b130-5a73cfcd8c30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/1b1ef445-f401-4303-b130-5a73cfcd8c30/ticks/636910485521857446","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f405d547-cdd5-4636-9230-7e29628dd60e","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8da4f57-b778-4e05-99dc-b10ceaf15c94\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:39:09.4420611Z","submissionTimestamp":"2019-04-30T01:39:30.0760995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"43606b75-9cfa-49de-8963-79243b06723d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/43606b75-9cfa-49de-8963-79243b06723d/ticks/636921851371719890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"c773890b-489f-4fb2-99ed-920f02767cd6"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:57.171989Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"90f19cf1-32e7-4059-9ace-a0988be544e9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/90f19cf1-32e7-4059-9ace-a0988be544e9/ticks/636921851369670158","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.9670158Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"3df9d0e9-a163-4ec4-9ba6-12664d432edc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/3df9d0e9-a163-4ec4-9ba6-12664d432edc/ticks/636921851368814243","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d60d8298-9313-49f1-af9d-0cc72c35d2fe"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.8814243Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"40bb695c-a973-428e-a3dd-1e120aa1562e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/40bb695c-a973-428e-a3dd-1e120aa1562e/ticks/636921851367432957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f12cb0d2-4eca-429b-94d0-290b83dee1fd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7432957Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f59a5dbb-558c-414b-bb16-09827c14abcf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/f59a5dbb-558c-414b-bb16-09827c14abcf/ticks/636921851367038575","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"53a0ee37-4e2b-4e19-bb6a-20dee3caa41c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7038575Z","submissionTimestamp":"2019-04-30T01:39:14.0968095Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60/ticks/636921851366920602","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"47bfc8c2-6f9e-4415-811d-dfdec0f4740e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.6920602Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"57d87acc-5e9d-47c0-92d4-e6d2dddaf144","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/57d87acc-5e9d-47c0-92d4-e6d2dddaf144/ticks/636921851366114272","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.6114272Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"42970ab0-61a5-4540-8082-cc61f13dbc51","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/42970ab0-61a5-4540-8082-cc61f13dbc51/ticks/636921851365632788","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5632788Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4010cf11-285b-4be7-a553-2482fd339cc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/4010cf11-285b-4be7-a553-2482fd339cc1/ticks/636921851365238208","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5238208Z","submissionTimestamp":"2019-04-30T01:39:14.0958083Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f8cb9ee1-f174-478f-97bb-1463acae6299","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/f8cb9ee1-f174-478f-97bb-1463acae6299/ticks/636921851365170561","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5170561Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"68192493-e9b6-4f18-87df-796c6817ee4e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/68192493-e9b6-4f18-87df-796c6817ee4e/ticks/636921851348155649","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:54.8155649Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71/ticks/636921851339994151","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c0939be3-1ab2-455c-a55e-b3963af34bce","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f96a67fa-c2f6-4b75-92df-645861da5fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.9\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:53.9994151Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"cedcf517-e1d9-4ed3-883d-b1487acbe40c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/cedcf517-e1d9-4ed3-883d-b1487acbe40c/ticks/636921851326528534","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d396f903-daf0-4b06-a2f4-19ba9f834fcf","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.6528534Z","submissionTimestamp":"2019-04-30T01:39:12.0911982Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"c976b137-b10d-4e0c-9c77-d5e19ffe95d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/c976b137-b10d-4e0c-9c77-d5e19ffe95d3/ticks/636921851324777980","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.477798Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"22856551-019f-48bb-b62a-4a7be93568ab","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/22856551-019f-48bb-b62a-4a7be93568ab/ticks/636921851319580640","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b5491954-faf0-4406-95cc-d0c5596527b6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:51.958064Z","submissionTimestamp":"2019-04-30T01:39:19.069773Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"75f09178-7980-45c1-9e9a-7bbbb9a789b3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/75f09178-7980-45c1-9e9a-7bbbb9a789b3/ticks/636921851270988595","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"be434c7e-7243-4a20-a58a-3611e70fc7de","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"27194346-8460-4f80-8ff5-3fc1eafaf18e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"fec6704f-451b-4ded-9897-64b6ccbe49c7\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:47.0988595Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"0f0a08d3-04b1-4606-b550-2aa266799a56","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/0f0a08d3-04b1-4606-b550-2aa266799a56/ticks/636921851269338559","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"5d941214-7bbc-41ef-86dd-ebeb32c5d001","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a90d562e-90ac-4a50-9331-e80cc7f91025\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.1857446Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3954fd73-d2ec-4d31-970c-11bceb02f282","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3954fd73-d2ec-4d31-970c-11bceb02f282/ticks/636910485521607485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:52.1607485Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"47ea11cb-aa63-4eca-a101-fcdc9e383efa","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/47ea11cb-aa63-4eca-a101-fcdc9e383efa/ticks/636910485508373075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8373075Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b/ticks/636910485508223062","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8223062Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"01111053-a4cd-4a11-82bd-4473ee667d09","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/01111053-a4cd-4a11-82bd-4473ee667d09/ticks/636910485465079890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:46.9338559Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"de7b3279-8db2-405c-b018-9b5180aa03a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/de7b3279-8db2-405c-b018-9b5180aa03a9/ticks/636921851268438358","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:46.8438358Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"72fed6da-4e95-4ace-b9ef-5b002bed95c7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/72fed6da-4e95-4ace-b9ef-5b002bed95c7/ticks/636921851236275225","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.6275225Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f344c2c4-bb6f-447b-b8f8-10ab3137655b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/f344c2c4-bb6f-447b-b8f8-10ab3137655b/ticks/636921851234075203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.4075203Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"46282590-372d-4510-b0d8-a4c69a7163fd","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/46282590-372d-4510-b0d8-a4c69a7163fd/ticks/636921851221512397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:46.507989Z","submissionTimestamp":"2019-04-16T21:56:09.0663565Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6a8267-d352-4aa1-905f-fb58464af7d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/ba6a8267-d352-4aa1-905f-fb58464af7d4/ticks/636910485436480075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:43.6480075Z","submissionTimestamp":"2019-04-16T21:56:09.0653567Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:42.1512397Z","submissionTimestamp":"2019-04-30T01:39:00.0957365Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"b879db4c-70c2-4a8f-92c5-0dd178b3d928","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/b879db4c-70c2-4a8f-92c5-0dd178b3d928/ticks/636921851190962397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:39.0962397Z","submissionTimestamp":"2019-04-30T01:38:50.1188765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '87543' + - '87563' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:56:35 GMT + - Tue, 30 Apr 2019 01:39:30 GMT expires: - '-1' pragma: @@ -11770,101 +12333,101 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A56%3A44Z%20and%20correlationId%20eq%20%27f4189349-fdd0-4ca4-a24c-b1007eeec5fe%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A39%3A41Z%20and%20correlationId%20eq%20%27e325c561-fdee-4660-bfca-3fd77ef5865b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d591d9ae-c520-44f8-890a-908ac291212a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/d591d9ae-c520-44f8-890a-908ac291212a/ticks/636910485683053009","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"55ef4862-6f19-4d29-a412-4fe70fd01bf7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"9f888478-96cf-493b-9238-d91fd359b3f6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/9f888478-96cf-493b-9238-d91fd359b3f6/ticks/636921851494420611","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fcb63f5a-572a-432e-bdae-ba0cbb5b5f71","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:56:08.3053009Z","submissionTimestamp":"2019-04-16T21:56:24.1460814Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ed73bd1a-ace9-46aa-8c83-9f57dfd83038","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/ed73bd1a-ace9-46aa-8c83-9f57dfd83038/ticks/636910485586092620","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b446a22e-df64-45b8-b1ed-501218484a03","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.609262Z","submissionTimestamp":"2019-04-16T21:56:17.1254159Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"982296e0-ad5e-48cb-a895-176f3edbd374","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/982296e0-ad5e-48cb-a895-176f3edbd374/ticks/636910485581144106","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0c27b9b8-253a-46ee-ad7b-473404eb262a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.1144106Z","submissionTimestamp":"2019-04-16T21:56:11.0953021Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d83537b0-6f54-436e-81d2-35e2cabd4555","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/d83537b0-6f54-436e-81d2-35e2cabd4555/ticks/636910485575785264","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b6185b98-9de5-41b7-8cd1-272dca7402a5"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5785264Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"037ff8a6-9fc4-4965-86d5-4252252dd4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/037ff8a6-9fc4-4965-86d5-4252252dd4ec/ticks/636910485575762435","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"be40c9eb-fa5b-4736-9c62-bf4f3cc760f8"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5762435Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3eb69f95-6434-40b5-90ce-ecc5ffe230e0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/3eb69f95-6434-40b5-90ce-ecc5ffe230e0/ticks/636910485575748999","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"9e83dd5e-4757-49f7-8c1a-29069a67183b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5748999Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3c1e57f9-8ba2-4981-9961-fb4b3f5254e2","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/3c1e57f9-8ba2-4981-9961-fb4b3f5254e2/ticks/636910485575719525","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"a3423043-fff2-4047-aa41-e1285b9604ce"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5719525Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"aed37c04-031c-4bef-81d5-17789b0c727f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/aed37c04-031c-4bef-81d5-17789b0c727f/ticks/636910485574129910","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"337c7a48-3f78-4d2c-ae5e-e00dd4d2e3f7"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:57.412991Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"6ebd5203-731c-49c6-a302-f5934ce033a6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/6ebd5203-731c-49c6-a302-f5934ce033a6/ticks/636910485572879862","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.2879862Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"2fe4cf55-9060-4653-a483-c032405b54f3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/2fe4cf55-9060-4653-a483-c032405b54f3/ticks/636910485571898891","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1898891Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"b50c38c7-5aeb-421c-845e-8813dda60601","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/b50c38c7-5aeb-421c-845e-8813dda60601/ticks/636910485571811972","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1811972Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6e19c6-f405-481e-ad7b-fc68f3e91006","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/ba6e19c6-f405-481e-ad7b-fc68f3e91006/ticks/636910485571369341","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1369341Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"db96c0f4-c181-4dbb-a319-cde67c56d947","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/db96c0f4-c181-4dbb-a319-cde67c56d947/ticks/636910485571284809","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1284809Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"8ab6ffa6-bf35-40e6-bc89-7550c28acce4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/8ab6ffa6-bf35-40e6-bc89-7550c28acce4/ticks/636910485565074705","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:56.5074705Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"17d19eb7-e37d-4137-84e4-ebc95eaf7d75","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/17d19eb7-e37d-4137-84e4-ebc95eaf7d75/ticks/636910485563425086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"ef34d99c-b5d4-4e00-b7de-728f79bbb5e8","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ddc06e37-9c35-4e27-ab0c-709777c2f3a1\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.7\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:56.3425086Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"a936c997-757b-4f52-89d4-81a355cca016","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/a936c997-757b-4f52-89d4-81a355cca016/ticks/636910485556825268","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:55.6825268Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3f85c787-563a-4556-8d46-c3b171c6ee64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3f85c787-563a-4556-8d46-c3b171c6ee64/ticks/636910485522407487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7660507d-c085-4819-b4e8-d77a8d9be179","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"d8cd10e4-51c3-4f15-9251-4dd225ebc3cb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f58b9be5-8540-498b-9df3-c2f2d1f1aff5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.2407487Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"1b1ef445-f401-4303-b130-5a73cfcd8c30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/1b1ef445-f401-4303-b130-5a73cfcd8c30/ticks/636910485521857446","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f405d547-cdd5-4636-9230-7e29628dd60e","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8da4f57-b778-4e05-99dc-b10ceaf15c94\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:39:09.4420611Z","submissionTimestamp":"2019-04-30T01:39:30.0760995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"43606b75-9cfa-49de-8963-79243b06723d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/43606b75-9cfa-49de-8963-79243b06723d/ticks/636921851371719890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"c773890b-489f-4fb2-99ed-920f02767cd6"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:57.171989Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"90f19cf1-32e7-4059-9ace-a0988be544e9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/90f19cf1-32e7-4059-9ace-a0988be544e9/ticks/636921851369670158","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.9670158Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"3df9d0e9-a163-4ec4-9ba6-12664d432edc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/3df9d0e9-a163-4ec4-9ba6-12664d432edc/ticks/636921851368814243","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d60d8298-9313-49f1-af9d-0cc72c35d2fe"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.8814243Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"40bb695c-a973-428e-a3dd-1e120aa1562e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/40bb695c-a973-428e-a3dd-1e120aa1562e/ticks/636921851367432957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f12cb0d2-4eca-429b-94d0-290b83dee1fd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7432957Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f59a5dbb-558c-414b-bb16-09827c14abcf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/f59a5dbb-558c-414b-bb16-09827c14abcf/ticks/636921851367038575","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"53a0ee37-4e2b-4e19-bb6a-20dee3caa41c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7038575Z","submissionTimestamp":"2019-04-30T01:39:14.0968095Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60/ticks/636921851366920602","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"47bfc8c2-6f9e-4415-811d-dfdec0f4740e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.6920602Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"57d87acc-5e9d-47c0-92d4-e6d2dddaf144","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/57d87acc-5e9d-47c0-92d4-e6d2dddaf144/ticks/636921851366114272","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.6114272Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"42970ab0-61a5-4540-8082-cc61f13dbc51","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/42970ab0-61a5-4540-8082-cc61f13dbc51/ticks/636921851365632788","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5632788Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4010cf11-285b-4be7-a553-2482fd339cc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/4010cf11-285b-4be7-a553-2482fd339cc1/ticks/636921851365238208","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5238208Z","submissionTimestamp":"2019-04-30T01:39:14.0958083Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f8cb9ee1-f174-478f-97bb-1463acae6299","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/f8cb9ee1-f174-478f-97bb-1463acae6299/ticks/636921851365170561","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5170561Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"68192493-e9b6-4f18-87df-796c6817ee4e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/68192493-e9b6-4f18-87df-796c6817ee4e/ticks/636921851348155649","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:54.8155649Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71/ticks/636921851339994151","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c0939be3-1ab2-455c-a55e-b3963af34bce","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f96a67fa-c2f6-4b75-92df-645861da5fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.9\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:53.9994151Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"cedcf517-e1d9-4ed3-883d-b1487acbe40c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/cedcf517-e1d9-4ed3-883d-b1487acbe40c/ticks/636921851326528534","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d396f903-daf0-4b06-a2f4-19ba9f834fcf","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.6528534Z","submissionTimestamp":"2019-04-30T01:39:12.0911982Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"c976b137-b10d-4e0c-9c77-d5e19ffe95d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/c976b137-b10d-4e0c-9c77-d5e19ffe95d3/ticks/636921851324777980","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.477798Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"22856551-019f-48bb-b62a-4a7be93568ab","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/22856551-019f-48bb-b62a-4a7be93568ab/ticks/636921851319580640","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b5491954-faf0-4406-95cc-d0c5596527b6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:51.958064Z","submissionTimestamp":"2019-04-30T01:39:19.069773Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"75f09178-7980-45c1-9e9a-7bbbb9a789b3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/75f09178-7980-45c1-9e9a-7bbbb9a789b3/ticks/636921851270988595","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"be434c7e-7243-4a20-a58a-3611e70fc7de","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"27194346-8460-4f80-8ff5-3fc1eafaf18e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"fec6704f-451b-4ded-9897-64b6ccbe49c7\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:47.0988595Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"0f0a08d3-04b1-4606-b550-2aa266799a56","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/0f0a08d3-04b1-4606-b550-2aa266799a56/ticks/636921851269338559","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"5d941214-7bbc-41ef-86dd-ebeb32c5d001","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a90d562e-90ac-4a50-9331-e80cc7f91025\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.1857446Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3954fd73-d2ec-4d31-970c-11bceb02f282","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3954fd73-d2ec-4d31-970c-11bceb02f282/ticks/636910485521607485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:52.1607485Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"47ea11cb-aa63-4eca-a101-fcdc9e383efa","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/47ea11cb-aa63-4eca-a101-fcdc9e383efa/ticks/636910485508373075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8373075Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b/ticks/636910485508223062","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8223062Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"01111053-a4cd-4a11-82bd-4473ee667d09","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/01111053-a4cd-4a11-82bd-4473ee667d09/ticks/636910485465079890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:46.9338559Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"de7b3279-8db2-405c-b018-9b5180aa03a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/de7b3279-8db2-405c-b018-9b5180aa03a9/ticks/636921851268438358","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:46.8438358Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"72fed6da-4e95-4ace-b9ef-5b002bed95c7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/72fed6da-4e95-4ace-b9ef-5b002bed95c7/ticks/636921851236275225","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.6275225Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f344c2c4-bb6f-447b-b8f8-10ab3137655b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/f344c2c4-bb6f-447b-b8f8-10ab3137655b/ticks/636921851234075203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.4075203Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"46282590-372d-4510-b0d8-a4c69a7163fd","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/46282590-372d-4510-b0d8-a4c69a7163fd/ticks/636921851221512397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:46.507989Z","submissionTimestamp":"2019-04-16T21:56:09.0663565Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6a8267-d352-4aa1-905f-fb58464af7d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/ba6a8267-d352-4aa1-905f-fb58464af7d4/ticks/636910485436480075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:43.6480075Z","submissionTimestamp":"2019-04-16T21:56:09.0653567Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:42.1512397Z","submissionTimestamp":"2019-04-30T01:39:00.0957365Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"b879db4c-70c2-4a8f-92c5-0dd178b3d928","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/b879db4c-70c2-4a8f-92c5-0dd178b3d928/ticks/636921851190962397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:39.0962397Z","submissionTimestamp":"2019-04-30T01:38:50.1188765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '87543' + - '87563' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:56:45 GMT + - Tue, 30 Apr 2019 01:39:41 GMT expires: - '-1' pragma: @@ -11897,10 +12460,10 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461551401009006?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450185646233767?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -11912,7 +12475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:56:46 GMT + - Tue, 30 Apr 2019 01:39:42 GMT expires: - '-1' pragma: @@ -11943,101 +12506,101 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A56%3A54Z%20and%20correlationId%20eq%20%27f4189349-fdd0-4ca4-a24c-b1007eeec5fe%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A39%3A51Z%20and%20correlationId%20eq%20%27e325c561-fdee-4660-bfca-3fd77ef5865b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d591d9ae-c520-44f8-890a-908ac291212a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/d591d9ae-c520-44f8-890a-908ac291212a/ticks/636910485683053009","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"55ef4862-6f19-4d29-a412-4fe70fd01bf7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"9f888478-96cf-493b-9238-d91fd359b3f6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/9f888478-96cf-493b-9238-d91fd359b3f6/ticks/636921851494420611","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fcb63f5a-572a-432e-bdae-ba0cbb5b5f71","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:56:08.3053009Z","submissionTimestamp":"2019-04-16T21:56:24.1460814Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ed73bd1a-ace9-46aa-8c83-9f57dfd83038","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/ed73bd1a-ace9-46aa-8c83-9f57dfd83038/ticks/636910485586092620","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b446a22e-df64-45b8-b1ed-501218484a03","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.609262Z","submissionTimestamp":"2019-04-16T21:56:17.1254159Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"982296e0-ad5e-48cb-a895-176f3edbd374","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/982296e0-ad5e-48cb-a895-176f3edbd374/ticks/636910485581144106","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0c27b9b8-253a-46ee-ad7b-473404eb262a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.1144106Z","submissionTimestamp":"2019-04-16T21:56:11.0953021Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d83537b0-6f54-436e-81d2-35e2cabd4555","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/d83537b0-6f54-436e-81d2-35e2cabd4555/ticks/636910485575785264","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b6185b98-9de5-41b7-8cd1-272dca7402a5"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5785264Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"037ff8a6-9fc4-4965-86d5-4252252dd4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/037ff8a6-9fc4-4965-86d5-4252252dd4ec/ticks/636910485575762435","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"be40c9eb-fa5b-4736-9c62-bf4f3cc760f8"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5762435Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3eb69f95-6434-40b5-90ce-ecc5ffe230e0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/3eb69f95-6434-40b5-90ce-ecc5ffe230e0/ticks/636910485575748999","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"9e83dd5e-4757-49f7-8c1a-29069a67183b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5748999Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3c1e57f9-8ba2-4981-9961-fb4b3f5254e2","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/3c1e57f9-8ba2-4981-9961-fb4b3f5254e2/ticks/636910485575719525","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"a3423043-fff2-4047-aa41-e1285b9604ce"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5719525Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"aed37c04-031c-4bef-81d5-17789b0c727f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/aed37c04-031c-4bef-81d5-17789b0c727f/ticks/636910485574129910","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"337c7a48-3f78-4d2c-ae5e-e00dd4d2e3f7"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:57.412991Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"6ebd5203-731c-49c6-a302-f5934ce033a6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/6ebd5203-731c-49c6-a302-f5934ce033a6/ticks/636910485572879862","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.2879862Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"2fe4cf55-9060-4653-a483-c032405b54f3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/2fe4cf55-9060-4653-a483-c032405b54f3/ticks/636910485571898891","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1898891Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"b50c38c7-5aeb-421c-845e-8813dda60601","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/b50c38c7-5aeb-421c-845e-8813dda60601/ticks/636910485571811972","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1811972Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6e19c6-f405-481e-ad7b-fc68f3e91006","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/ba6e19c6-f405-481e-ad7b-fc68f3e91006/ticks/636910485571369341","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1369341Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"db96c0f4-c181-4dbb-a319-cde67c56d947","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/db96c0f4-c181-4dbb-a319-cde67c56d947/ticks/636910485571284809","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1284809Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"8ab6ffa6-bf35-40e6-bc89-7550c28acce4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/8ab6ffa6-bf35-40e6-bc89-7550c28acce4/ticks/636910485565074705","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:56.5074705Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"17d19eb7-e37d-4137-84e4-ebc95eaf7d75","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/17d19eb7-e37d-4137-84e4-ebc95eaf7d75/ticks/636910485563425086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"ef34d99c-b5d4-4e00-b7de-728f79bbb5e8","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ddc06e37-9c35-4e27-ab0c-709777c2f3a1\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.7\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:56.3425086Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"a936c997-757b-4f52-89d4-81a355cca016","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/a936c997-757b-4f52-89d4-81a355cca016/ticks/636910485556825268","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:55.6825268Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3f85c787-563a-4556-8d46-c3b171c6ee64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3f85c787-563a-4556-8d46-c3b171c6ee64/ticks/636910485522407487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7660507d-c085-4819-b4e8-d77a8d9be179","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"d8cd10e4-51c3-4f15-9251-4dd225ebc3cb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f58b9be5-8540-498b-9df3-c2f2d1f1aff5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.2407487Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"1b1ef445-f401-4303-b130-5a73cfcd8c30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/1b1ef445-f401-4303-b130-5a73cfcd8c30/ticks/636910485521857446","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f405d547-cdd5-4636-9230-7e29628dd60e","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8da4f57-b778-4e05-99dc-b10ceaf15c94\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:39:09.4420611Z","submissionTimestamp":"2019-04-30T01:39:30.0760995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"43606b75-9cfa-49de-8963-79243b06723d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/43606b75-9cfa-49de-8963-79243b06723d/ticks/636921851371719890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"c773890b-489f-4fb2-99ed-920f02767cd6"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:57.171989Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"90f19cf1-32e7-4059-9ace-a0988be544e9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/90f19cf1-32e7-4059-9ace-a0988be544e9/ticks/636921851369670158","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.9670158Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"3df9d0e9-a163-4ec4-9ba6-12664d432edc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/3df9d0e9-a163-4ec4-9ba6-12664d432edc/ticks/636921851368814243","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d60d8298-9313-49f1-af9d-0cc72c35d2fe"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.8814243Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"40bb695c-a973-428e-a3dd-1e120aa1562e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/40bb695c-a973-428e-a3dd-1e120aa1562e/ticks/636921851367432957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f12cb0d2-4eca-429b-94d0-290b83dee1fd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7432957Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f59a5dbb-558c-414b-bb16-09827c14abcf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/f59a5dbb-558c-414b-bb16-09827c14abcf/ticks/636921851367038575","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"53a0ee37-4e2b-4e19-bb6a-20dee3caa41c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7038575Z","submissionTimestamp":"2019-04-30T01:39:14.0968095Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60/ticks/636921851366920602","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"47bfc8c2-6f9e-4415-811d-dfdec0f4740e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.6920602Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"57d87acc-5e9d-47c0-92d4-e6d2dddaf144","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/57d87acc-5e9d-47c0-92d4-e6d2dddaf144/ticks/636921851366114272","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.6114272Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"42970ab0-61a5-4540-8082-cc61f13dbc51","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/42970ab0-61a5-4540-8082-cc61f13dbc51/ticks/636921851365632788","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5632788Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4010cf11-285b-4be7-a553-2482fd339cc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/4010cf11-285b-4be7-a553-2482fd339cc1/ticks/636921851365238208","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5238208Z","submissionTimestamp":"2019-04-30T01:39:14.0958083Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f8cb9ee1-f174-478f-97bb-1463acae6299","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/f8cb9ee1-f174-478f-97bb-1463acae6299/ticks/636921851365170561","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5170561Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"68192493-e9b6-4f18-87df-796c6817ee4e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/68192493-e9b6-4f18-87df-796c6817ee4e/ticks/636921851348155649","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:54.8155649Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71/ticks/636921851339994151","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c0939be3-1ab2-455c-a55e-b3963af34bce","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f96a67fa-c2f6-4b75-92df-645861da5fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.9\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:53.9994151Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"cedcf517-e1d9-4ed3-883d-b1487acbe40c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/cedcf517-e1d9-4ed3-883d-b1487acbe40c/ticks/636921851326528534","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d396f903-daf0-4b06-a2f4-19ba9f834fcf","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.6528534Z","submissionTimestamp":"2019-04-30T01:39:12.0911982Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"c976b137-b10d-4e0c-9c77-d5e19ffe95d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/c976b137-b10d-4e0c-9c77-d5e19ffe95d3/ticks/636921851324777980","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.477798Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"22856551-019f-48bb-b62a-4a7be93568ab","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/22856551-019f-48bb-b62a-4a7be93568ab/ticks/636921851319580640","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b5491954-faf0-4406-95cc-d0c5596527b6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:51.958064Z","submissionTimestamp":"2019-04-30T01:39:19.069773Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"75f09178-7980-45c1-9e9a-7bbbb9a789b3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/75f09178-7980-45c1-9e9a-7bbbb9a789b3/ticks/636921851270988595","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"be434c7e-7243-4a20-a58a-3611e70fc7de","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"27194346-8460-4f80-8ff5-3fc1eafaf18e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"fec6704f-451b-4ded-9897-64b6ccbe49c7\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:47.0988595Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"0f0a08d3-04b1-4606-b550-2aa266799a56","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/0f0a08d3-04b1-4606-b550-2aa266799a56/ticks/636921851269338559","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"5d941214-7bbc-41ef-86dd-ebeb32c5d001","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a90d562e-90ac-4a50-9331-e80cc7f91025\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.1857446Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3954fd73-d2ec-4d31-970c-11bceb02f282","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3954fd73-d2ec-4d31-970c-11bceb02f282/ticks/636910485521607485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:52.1607485Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"47ea11cb-aa63-4eca-a101-fcdc9e383efa","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/47ea11cb-aa63-4eca-a101-fcdc9e383efa/ticks/636910485508373075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8373075Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b/ticks/636910485508223062","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8223062Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"01111053-a4cd-4a11-82bd-4473ee667d09","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/01111053-a4cd-4a11-82bd-4473ee667d09/ticks/636910485465079890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:46.9338559Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"de7b3279-8db2-405c-b018-9b5180aa03a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/de7b3279-8db2-405c-b018-9b5180aa03a9/ticks/636921851268438358","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:46.8438358Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"72fed6da-4e95-4ace-b9ef-5b002bed95c7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/72fed6da-4e95-4ace-b9ef-5b002bed95c7/ticks/636921851236275225","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.6275225Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f344c2c4-bb6f-447b-b8f8-10ab3137655b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/f344c2c4-bb6f-447b-b8f8-10ab3137655b/ticks/636921851234075203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.4075203Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"46282590-372d-4510-b0d8-a4c69a7163fd","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/46282590-372d-4510-b0d8-a4c69a7163fd/ticks/636921851221512397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:46.507989Z","submissionTimestamp":"2019-04-16T21:56:09.0663565Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6a8267-d352-4aa1-905f-fb58464af7d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/ba6a8267-d352-4aa1-905f-fb58464af7d4/ticks/636910485436480075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:43.6480075Z","submissionTimestamp":"2019-04-16T21:56:09.0653567Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:42.1512397Z","submissionTimestamp":"2019-04-30T01:39:00.0957365Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"b879db4c-70c2-4a8f-92c5-0dd178b3d928","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/b879db4c-70c2-4a8f-92c5-0dd178b3d928/ticks/636921851190962397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:39.0962397Z","submissionTimestamp":"2019-04-30T01:38:50.1188765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '87543' + - '87563' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:56:55 GMT + - Tue, 30 Apr 2019 01:39:52 GMT expires: - '-1' pragma: @@ -12072,101 +12635,101 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A57%3A05Z%20and%20correlationId%20eq%20%27f4189349-fdd0-4ca4-a24c-b1007eeec5fe%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A40%3A02Z%20and%20correlationId%20eq%20%27e325c561-fdee-4660-bfca-3fd77ef5865b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d591d9ae-c520-44f8-890a-908ac291212a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/d591d9ae-c520-44f8-890a-908ac291212a/ticks/636910485683053009","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"55ef4862-6f19-4d29-a412-4fe70fd01bf7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"9f888478-96cf-493b-9238-d91fd359b3f6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/9f888478-96cf-493b-9238-d91fd359b3f6/ticks/636921851494420611","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fcb63f5a-572a-432e-bdae-ba0cbb5b5f71","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:56:08.3053009Z","submissionTimestamp":"2019-04-16T21:56:24.1460814Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ed73bd1a-ace9-46aa-8c83-9f57dfd83038","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/ed73bd1a-ace9-46aa-8c83-9f57dfd83038/ticks/636910485586092620","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b446a22e-df64-45b8-b1ed-501218484a03","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.609262Z","submissionTimestamp":"2019-04-16T21:56:17.1254159Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"982296e0-ad5e-48cb-a895-176f3edbd374","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/982296e0-ad5e-48cb-a895-176f3edbd374/ticks/636910485581144106","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0c27b9b8-253a-46ee-ad7b-473404eb262a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.1144106Z","submissionTimestamp":"2019-04-16T21:56:11.0953021Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d83537b0-6f54-436e-81d2-35e2cabd4555","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/d83537b0-6f54-436e-81d2-35e2cabd4555/ticks/636910485575785264","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b6185b98-9de5-41b7-8cd1-272dca7402a5"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5785264Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"037ff8a6-9fc4-4965-86d5-4252252dd4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/037ff8a6-9fc4-4965-86d5-4252252dd4ec/ticks/636910485575762435","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"be40c9eb-fa5b-4736-9c62-bf4f3cc760f8"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5762435Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3eb69f95-6434-40b5-90ce-ecc5ffe230e0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/3eb69f95-6434-40b5-90ce-ecc5ffe230e0/ticks/636910485575748999","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"9e83dd5e-4757-49f7-8c1a-29069a67183b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5748999Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3c1e57f9-8ba2-4981-9961-fb4b3f5254e2","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/3c1e57f9-8ba2-4981-9961-fb4b3f5254e2/ticks/636910485575719525","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"a3423043-fff2-4047-aa41-e1285b9604ce"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5719525Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"aed37c04-031c-4bef-81d5-17789b0c727f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/aed37c04-031c-4bef-81d5-17789b0c727f/ticks/636910485574129910","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"337c7a48-3f78-4d2c-ae5e-e00dd4d2e3f7"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:57.412991Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"6ebd5203-731c-49c6-a302-f5934ce033a6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/6ebd5203-731c-49c6-a302-f5934ce033a6/ticks/636910485572879862","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.2879862Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"2fe4cf55-9060-4653-a483-c032405b54f3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/2fe4cf55-9060-4653-a483-c032405b54f3/ticks/636910485571898891","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1898891Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"b50c38c7-5aeb-421c-845e-8813dda60601","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/b50c38c7-5aeb-421c-845e-8813dda60601/ticks/636910485571811972","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1811972Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6e19c6-f405-481e-ad7b-fc68f3e91006","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/ba6e19c6-f405-481e-ad7b-fc68f3e91006/ticks/636910485571369341","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1369341Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"db96c0f4-c181-4dbb-a319-cde67c56d947","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/db96c0f4-c181-4dbb-a319-cde67c56d947/ticks/636910485571284809","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1284809Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"8ab6ffa6-bf35-40e6-bc89-7550c28acce4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/8ab6ffa6-bf35-40e6-bc89-7550c28acce4/ticks/636910485565074705","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:56.5074705Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"17d19eb7-e37d-4137-84e4-ebc95eaf7d75","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/17d19eb7-e37d-4137-84e4-ebc95eaf7d75/ticks/636910485563425086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"ef34d99c-b5d4-4e00-b7de-728f79bbb5e8","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ddc06e37-9c35-4e27-ab0c-709777c2f3a1\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.7\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:56.3425086Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"a936c997-757b-4f52-89d4-81a355cca016","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/a936c997-757b-4f52-89d4-81a355cca016/ticks/636910485556825268","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:55.6825268Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3f85c787-563a-4556-8d46-c3b171c6ee64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3f85c787-563a-4556-8d46-c3b171c6ee64/ticks/636910485522407487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7660507d-c085-4819-b4e8-d77a8d9be179","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"d8cd10e4-51c3-4f15-9251-4dd225ebc3cb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f58b9be5-8540-498b-9df3-c2f2d1f1aff5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.2407487Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"1b1ef445-f401-4303-b130-5a73cfcd8c30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/1b1ef445-f401-4303-b130-5a73cfcd8c30/ticks/636910485521857446","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f405d547-cdd5-4636-9230-7e29628dd60e","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8da4f57-b778-4e05-99dc-b10ceaf15c94\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:39:09.4420611Z","submissionTimestamp":"2019-04-30T01:39:30.0760995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"43606b75-9cfa-49de-8963-79243b06723d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/43606b75-9cfa-49de-8963-79243b06723d/ticks/636921851371719890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"c773890b-489f-4fb2-99ed-920f02767cd6"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:57.171989Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"90f19cf1-32e7-4059-9ace-a0988be544e9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/90f19cf1-32e7-4059-9ace-a0988be544e9/ticks/636921851369670158","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.9670158Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"3df9d0e9-a163-4ec4-9ba6-12664d432edc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/3df9d0e9-a163-4ec4-9ba6-12664d432edc/ticks/636921851368814243","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d60d8298-9313-49f1-af9d-0cc72c35d2fe"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.8814243Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"40bb695c-a973-428e-a3dd-1e120aa1562e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/40bb695c-a973-428e-a3dd-1e120aa1562e/ticks/636921851367432957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f12cb0d2-4eca-429b-94d0-290b83dee1fd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7432957Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f59a5dbb-558c-414b-bb16-09827c14abcf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/f59a5dbb-558c-414b-bb16-09827c14abcf/ticks/636921851367038575","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"53a0ee37-4e2b-4e19-bb6a-20dee3caa41c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7038575Z","submissionTimestamp":"2019-04-30T01:39:14.0968095Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60/ticks/636921851366920602","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"47bfc8c2-6f9e-4415-811d-dfdec0f4740e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.6920602Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"57d87acc-5e9d-47c0-92d4-e6d2dddaf144","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/57d87acc-5e9d-47c0-92d4-e6d2dddaf144/ticks/636921851366114272","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.6114272Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"42970ab0-61a5-4540-8082-cc61f13dbc51","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/42970ab0-61a5-4540-8082-cc61f13dbc51/ticks/636921851365632788","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5632788Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4010cf11-285b-4be7-a553-2482fd339cc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/4010cf11-285b-4be7-a553-2482fd339cc1/ticks/636921851365238208","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5238208Z","submissionTimestamp":"2019-04-30T01:39:14.0958083Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f8cb9ee1-f174-478f-97bb-1463acae6299","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/f8cb9ee1-f174-478f-97bb-1463acae6299/ticks/636921851365170561","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5170561Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"68192493-e9b6-4f18-87df-796c6817ee4e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/68192493-e9b6-4f18-87df-796c6817ee4e/ticks/636921851348155649","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:54.8155649Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71/ticks/636921851339994151","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c0939be3-1ab2-455c-a55e-b3963af34bce","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f96a67fa-c2f6-4b75-92df-645861da5fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.9\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:53.9994151Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"cedcf517-e1d9-4ed3-883d-b1487acbe40c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/cedcf517-e1d9-4ed3-883d-b1487acbe40c/ticks/636921851326528534","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d396f903-daf0-4b06-a2f4-19ba9f834fcf","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.6528534Z","submissionTimestamp":"2019-04-30T01:39:12.0911982Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"c976b137-b10d-4e0c-9c77-d5e19ffe95d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/c976b137-b10d-4e0c-9c77-d5e19ffe95d3/ticks/636921851324777980","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.477798Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"22856551-019f-48bb-b62a-4a7be93568ab","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/22856551-019f-48bb-b62a-4a7be93568ab/ticks/636921851319580640","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b5491954-faf0-4406-95cc-d0c5596527b6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:51.958064Z","submissionTimestamp":"2019-04-30T01:39:19.069773Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"75f09178-7980-45c1-9e9a-7bbbb9a789b3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/75f09178-7980-45c1-9e9a-7bbbb9a789b3/ticks/636921851270988595","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"be434c7e-7243-4a20-a58a-3611e70fc7de","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"27194346-8460-4f80-8ff5-3fc1eafaf18e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"fec6704f-451b-4ded-9897-64b6ccbe49c7\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:47.0988595Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"0f0a08d3-04b1-4606-b550-2aa266799a56","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/0f0a08d3-04b1-4606-b550-2aa266799a56/ticks/636921851269338559","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"5d941214-7bbc-41ef-86dd-ebeb32c5d001","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a90d562e-90ac-4a50-9331-e80cc7f91025\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.1857446Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3954fd73-d2ec-4d31-970c-11bceb02f282","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3954fd73-d2ec-4d31-970c-11bceb02f282/ticks/636910485521607485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:52.1607485Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"47ea11cb-aa63-4eca-a101-fcdc9e383efa","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/47ea11cb-aa63-4eca-a101-fcdc9e383efa/ticks/636910485508373075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8373075Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b/ticks/636910485508223062","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8223062Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"01111053-a4cd-4a11-82bd-4473ee667d09","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/01111053-a4cd-4a11-82bd-4473ee667d09/ticks/636910485465079890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:46.9338559Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"de7b3279-8db2-405c-b018-9b5180aa03a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/de7b3279-8db2-405c-b018-9b5180aa03a9/ticks/636921851268438358","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:46.8438358Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"72fed6da-4e95-4ace-b9ef-5b002bed95c7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/72fed6da-4e95-4ace-b9ef-5b002bed95c7/ticks/636921851236275225","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.6275225Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f344c2c4-bb6f-447b-b8f8-10ab3137655b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/f344c2c4-bb6f-447b-b8f8-10ab3137655b/ticks/636921851234075203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.4075203Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"46282590-372d-4510-b0d8-a4c69a7163fd","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/46282590-372d-4510-b0d8-a4c69a7163fd/ticks/636921851221512397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:46.507989Z","submissionTimestamp":"2019-04-16T21:56:09.0663565Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6a8267-d352-4aa1-905f-fb58464af7d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/ba6a8267-d352-4aa1-905f-fb58464af7d4/ticks/636910485436480075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:43.6480075Z","submissionTimestamp":"2019-04-16T21:56:09.0653567Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:42.1512397Z","submissionTimestamp":"2019-04-30T01:39:00.0957365Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"b879db4c-70c2-4a8f-92c5-0dd178b3d928","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/b879db4c-70c2-4a8f-92c5-0dd178b3d928/ticks/636921851190962397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:39.0962397Z","submissionTimestamp":"2019-04-30T01:38:50.1188765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '87543' + - '87563' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:05 GMT + - Tue, 30 Apr 2019 01:40:03 GMT expires: - '-1' pragma: @@ -12199,10 +12762,10 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461551401009006?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450185646233767?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -12214,7 +12777,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:16 GMT + - Tue, 30 Apr 2019 01:40:12 GMT expires: - '-1' pragma: @@ -12245,105 +12808,242 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A40%3A13Z%20and%20correlationId%20eq%20%27e325c561-fdee-4660-bfca-3fd77ef5865b%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"eb1f7afc-5e14-4aa6-be1e-2ba7a986e5c5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/eb1f7afc-5e14-4aa6-be1e-2ba7a986e5c5/ticks/636921851809849140","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"929a2ef6-827e-437d-a52a-1f7034974df9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:39:40.984914Z","submissionTimestamp":"2019-04-30T01:40:04.0855357Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"9f888478-96cf-493b-9238-d91fd359b3f6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/9f888478-96cf-493b-9238-d91fd359b3f6/ticks/636921851494420611","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fcb63f5a-572a-432e-bdae-ba0cbb5b5f71","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:39:09.4420611Z","submissionTimestamp":"2019-04-30T01:39:30.0760995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"43606b75-9cfa-49de-8963-79243b06723d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/43606b75-9cfa-49de-8963-79243b06723d/ticks/636921851371719890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"c773890b-489f-4fb2-99ed-920f02767cd6"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:57.171989Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"90f19cf1-32e7-4059-9ace-a0988be544e9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/90f19cf1-32e7-4059-9ace-a0988be544e9/ticks/636921851369670158","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.9670158Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"3df9d0e9-a163-4ec4-9ba6-12664d432edc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/3df9d0e9-a163-4ec4-9ba6-12664d432edc/ticks/636921851368814243","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d60d8298-9313-49f1-af9d-0cc72c35d2fe"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.8814243Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"40bb695c-a973-428e-a3dd-1e120aa1562e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/40bb695c-a973-428e-a3dd-1e120aa1562e/ticks/636921851367432957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f12cb0d2-4eca-429b-94d0-290b83dee1fd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7432957Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f59a5dbb-558c-414b-bb16-09827c14abcf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/f59a5dbb-558c-414b-bb16-09827c14abcf/ticks/636921851367038575","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"53a0ee37-4e2b-4e19-bb6a-20dee3caa41c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7038575Z","submissionTimestamp":"2019-04-30T01:39:14.0968095Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60/ticks/636921851366920602","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"47bfc8c2-6f9e-4415-811d-dfdec0f4740e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.6920602Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"57d87acc-5e9d-47c0-92d4-e6d2dddaf144","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/57d87acc-5e9d-47c0-92d4-e6d2dddaf144/ticks/636921851366114272","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.6114272Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"42970ab0-61a5-4540-8082-cc61f13dbc51","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/42970ab0-61a5-4540-8082-cc61f13dbc51/ticks/636921851365632788","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5632788Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4010cf11-285b-4be7-a553-2482fd339cc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/4010cf11-285b-4be7-a553-2482fd339cc1/ticks/636921851365238208","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5238208Z","submissionTimestamp":"2019-04-30T01:39:14.0958083Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f8cb9ee1-f174-478f-97bb-1463acae6299","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/f8cb9ee1-f174-478f-97bb-1463acae6299/ticks/636921851365170561","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5170561Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"68192493-e9b6-4f18-87df-796c6817ee4e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/68192493-e9b6-4f18-87df-796c6817ee4e/ticks/636921851348155649","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:54.8155649Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71/ticks/636921851339994151","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c0939be3-1ab2-455c-a55e-b3963af34bce","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f96a67fa-c2f6-4b75-92df-645861da5fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.9\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:53.9994151Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"cedcf517-e1d9-4ed3-883d-b1487acbe40c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/cedcf517-e1d9-4ed3-883d-b1487acbe40c/ticks/636921851326528534","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d396f903-daf0-4b06-a2f4-19ba9f834fcf","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.6528534Z","submissionTimestamp":"2019-04-30T01:39:12.0911982Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"c976b137-b10d-4e0c-9c77-d5e19ffe95d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/c976b137-b10d-4e0c-9c77-d5e19ffe95d3/ticks/636921851324777980","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.477798Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"22856551-019f-48bb-b62a-4a7be93568ab","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/22856551-019f-48bb-b62a-4a7be93568ab/ticks/636921851319580640","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b5491954-faf0-4406-95cc-d0c5596527b6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:51.958064Z","submissionTimestamp":"2019-04-30T01:39:19.069773Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"75f09178-7980-45c1-9e9a-7bbbb9a789b3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/75f09178-7980-45c1-9e9a-7bbbb9a789b3/ticks/636921851270988595","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"be434c7e-7243-4a20-a58a-3611e70fc7de","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"27194346-8460-4f80-8ff5-3fc1eafaf18e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"fec6704f-451b-4ded-9897-64b6ccbe49c7\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:47.0988595Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"0f0a08d3-04b1-4606-b550-2aa266799a56","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/0f0a08d3-04b1-4606-b550-2aa266799a56/ticks/636921851269338559","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"5d941214-7bbc-41ef-86dd-ebeb32c5d001","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a90d562e-90ac-4a50-9331-e80cc7f91025\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:46.9338559Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"de7b3279-8db2-405c-b018-9b5180aa03a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/de7b3279-8db2-405c-b018-9b5180aa03a9/ticks/636921851268438358","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:46.8438358Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"72fed6da-4e95-4ace-b9ef-5b002bed95c7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/72fed6da-4e95-4ace-b9ef-5b002bed95c7/ticks/636921851236275225","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.6275225Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f344c2c4-bb6f-447b-b8f8-10ab3137655b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/f344c2c4-bb6f-447b-b8f8-10ab3137655b/ticks/636921851234075203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.4075203Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"46282590-372d-4510-b0d8-a4c69a7163fd","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/46282590-372d-4510-b0d8-a4c69a7163fd/ticks/636921851221512397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:42.1512397Z","submissionTimestamp":"2019-04-30T01:39:00.0957365Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"b879db4c-70c2-4a8f-92c5-0dd178b3d928","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/b879db4c-70c2-4a8f-92c5-0dd178b3d928/ticks/636921851190962397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:39.0962397Z","submissionTimestamp":"2019-04-30T01:38:50.1188765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + headers: + cache-control: + - no-cache + content-length: + - '91141' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 30 Apr 2019 01:40:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --image --admin-username --admin-password --authentication-type --storage-sku + --data-disk-sizes-gb + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A57%3A26Z%20and%20correlationId%20eq%20%27f4189349-fdd0-4ca4-a24c-b1007eeec5fe%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A40%3A23Z%20and%20correlationId%20eq%20%27e325c561-fdee-4660-bfca-3fd77ef5865b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"552f6d95-a208-47f8-a4b1-fc8dfd8896f8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/552f6d95-a208-47f8-a4b1-fc8dfd8896f8/ticks/636910486172038419","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"6aab40f5-57b9-442e-bd3a-c265ea122242","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"57b23627-7138-4521-9976-8f54a9a19c9c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/57b23627-7138-4521-9976-8f54a9a19c9c/ticks/636921851965949009","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5a0bb140-1b3b-4770-ad79-8fae90fc688f","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:39:56.5949009Z","submissionTimestamp":"2019-04-30T01:40:19.0826059Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"eb1f7afc-5e14-4aa6-be1e-2ba7a986e5c5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/eb1f7afc-5e14-4aa6-be1e-2ba7a986e5c5/ticks/636921851809849140","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"929a2ef6-827e-437d-a52a-1f7034974df9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:56:57.2038419Z","submissionTimestamp":"2019-04-16T21:57:18.1675627Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d591d9ae-c520-44f8-890a-908ac291212a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/d591d9ae-c520-44f8-890a-908ac291212a/ticks/636910485683053009","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"55ef4862-6f19-4d29-a412-4fe70fd01bf7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:39:40.984914Z","submissionTimestamp":"2019-04-30T01:40:04.0855357Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"9f888478-96cf-493b-9238-d91fd359b3f6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/9f888478-96cf-493b-9238-d91fd359b3f6/ticks/636921851494420611","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fcb63f5a-572a-432e-bdae-ba0cbb5b5f71","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:56:08.3053009Z","submissionTimestamp":"2019-04-16T21:56:24.1460814Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ed73bd1a-ace9-46aa-8c83-9f57dfd83038","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/ed73bd1a-ace9-46aa-8c83-9f57dfd83038/ticks/636910485586092620","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b446a22e-df64-45b8-b1ed-501218484a03","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.609262Z","submissionTimestamp":"2019-04-16T21:56:17.1254159Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"982296e0-ad5e-48cb-a895-176f3edbd374","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/982296e0-ad5e-48cb-a895-176f3edbd374/ticks/636910485581144106","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0c27b9b8-253a-46ee-ad7b-473404eb262a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.1144106Z","submissionTimestamp":"2019-04-16T21:56:11.0953021Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d83537b0-6f54-436e-81d2-35e2cabd4555","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/d83537b0-6f54-436e-81d2-35e2cabd4555/ticks/636910485575785264","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b6185b98-9de5-41b7-8cd1-272dca7402a5"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5785264Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"037ff8a6-9fc4-4965-86d5-4252252dd4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/037ff8a6-9fc4-4965-86d5-4252252dd4ec/ticks/636910485575762435","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"be40c9eb-fa5b-4736-9c62-bf4f3cc760f8"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5762435Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3eb69f95-6434-40b5-90ce-ecc5ffe230e0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/3eb69f95-6434-40b5-90ce-ecc5ffe230e0/ticks/636910485575748999","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"9e83dd5e-4757-49f7-8c1a-29069a67183b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5748999Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3c1e57f9-8ba2-4981-9961-fb4b3f5254e2","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/3c1e57f9-8ba2-4981-9961-fb4b3f5254e2/ticks/636910485575719525","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"a3423043-fff2-4047-aa41-e1285b9604ce"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5719525Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"aed37c04-031c-4bef-81d5-17789b0c727f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/aed37c04-031c-4bef-81d5-17789b0c727f/ticks/636910485574129910","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"337c7a48-3f78-4d2c-ae5e-e00dd4d2e3f7"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:57.412991Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"6ebd5203-731c-49c6-a302-f5934ce033a6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/6ebd5203-731c-49c6-a302-f5934ce033a6/ticks/636910485572879862","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.2879862Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"2fe4cf55-9060-4653-a483-c032405b54f3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/2fe4cf55-9060-4653-a483-c032405b54f3/ticks/636910485571898891","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1898891Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"b50c38c7-5aeb-421c-845e-8813dda60601","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/b50c38c7-5aeb-421c-845e-8813dda60601/ticks/636910485571811972","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1811972Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6e19c6-f405-481e-ad7b-fc68f3e91006","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/ba6e19c6-f405-481e-ad7b-fc68f3e91006/ticks/636910485571369341","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1369341Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"db96c0f4-c181-4dbb-a319-cde67c56d947","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/db96c0f4-c181-4dbb-a319-cde67c56d947/ticks/636910485571284809","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1284809Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"8ab6ffa6-bf35-40e6-bc89-7550c28acce4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/8ab6ffa6-bf35-40e6-bc89-7550c28acce4/ticks/636910485565074705","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:56.5074705Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"17d19eb7-e37d-4137-84e4-ebc95eaf7d75","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/17d19eb7-e37d-4137-84e4-ebc95eaf7d75/ticks/636910485563425086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"ef34d99c-b5d4-4e00-b7de-728f79bbb5e8","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ddc06e37-9c35-4e27-ab0c-709777c2f3a1\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.7\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:56.3425086Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"a936c997-757b-4f52-89d4-81a355cca016","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/a936c997-757b-4f52-89d4-81a355cca016/ticks/636910485556825268","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:55.6825268Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3f85c787-563a-4556-8d46-c3b171c6ee64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3f85c787-563a-4556-8d46-c3b171c6ee64/ticks/636910485522407487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7660507d-c085-4819-b4e8-d77a8d9be179","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"d8cd10e4-51c3-4f15-9251-4dd225ebc3cb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f58b9be5-8540-498b-9df3-c2f2d1f1aff5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.2407487Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"1b1ef445-f401-4303-b130-5a73cfcd8c30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/1b1ef445-f401-4303-b130-5a73cfcd8c30/ticks/636910485521857446","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f405d547-cdd5-4636-9230-7e29628dd60e","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8da4f57-b778-4e05-99dc-b10ceaf15c94\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:39:09.4420611Z","submissionTimestamp":"2019-04-30T01:39:30.0760995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"43606b75-9cfa-49de-8963-79243b06723d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/43606b75-9cfa-49de-8963-79243b06723d/ticks/636921851371719890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"c773890b-489f-4fb2-99ed-920f02767cd6"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:57.171989Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"90f19cf1-32e7-4059-9ace-a0988be544e9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/90f19cf1-32e7-4059-9ace-a0988be544e9/ticks/636921851369670158","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.9670158Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"3df9d0e9-a163-4ec4-9ba6-12664d432edc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/3df9d0e9-a163-4ec4-9ba6-12664d432edc/ticks/636921851368814243","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d60d8298-9313-49f1-af9d-0cc72c35d2fe"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.8814243Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"40bb695c-a973-428e-a3dd-1e120aa1562e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/40bb695c-a973-428e-a3dd-1e120aa1562e/ticks/636921851367432957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f12cb0d2-4eca-429b-94d0-290b83dee1fd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7432957Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f59a5dbb-558c-414b-bb16-09827c14abcf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/f59a5dbb-558c-414b-bb16-09827c14abcf/ticks/636921851367038575","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"53a0ee37-4e2b-4e19-bb6a-20dee3caa41c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7038575Z","submissionTimestamp":"2019-04-30T01:39:14.0968095Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60/ticks/636921851366920602","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"47bfc8c2-6f9e-4415-811d-dfdec0f4740e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.6920602Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"57d87acc-5e9d-47c0-92d4-e6d2dddaf144","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/57d87acc-5e9d-47c0-92d4-e6d2dddaf144/ticks/636921851366114272","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.6114272Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"42970ab0-61a5-4540-8082-cc61f13dbc51","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/42970ab0-61a5-4540-8082-cc61f13dbc51/ticks/636921851365632788","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5632788Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4010cf11-285b-4be7-a553-2482fd339cc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/4010cf11-285b-4be7-a553-2482fd339cc1/ticks/636921851365238208","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5238208Z","submissionTimestamp":"2019-04-30T01:39:14.0958083Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f8cb9ee1-f174-478f-97bb-1463acae6299","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/f8cb9ee1-f174-478f-97bb-1463acae6299/ticks/636921851365170561","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5170561Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"68192493-e9b6-4f18-87df-796c6817ee4e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/68192493-e9b6-4f18-87df-796c6817ee4e/ticks/636921851348155649","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:54.8155649Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71/ticks/636921851339994151","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c0939be3-1ab2-455c-a55e-b3963af34bce","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f96a67fa-c2f6-4b75-92df-645861da5fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.9\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:53.9994151Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"cedcf517-e1d9-4ed3-883d-b1487acbe40c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/cedcf517-e1d9-4ed3-883d-b1487acbe40c/ticks/636921851326528534","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d396f903-daf0-4b06-a2f4-19ba9f834fcf","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.6528534Z","submissionTimestamp":"2019-04-30T01:39:12.0911982Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"c976b137-b10d-4e0c-9c77-d5e19ffe95d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/c976b137-b10d-4e0c-9c77-d5e19ffe95d3/ticks/636921851324777980","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.477798Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"22856551-019f-48bb-b62a-4a7be93568ab","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/22856551-019f-48bb-b62a-4a7be93568ab/ticks/636921851319580640","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b5491954-faf0-4406-95cc-d0c5596527b6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:51.958064Z","submissionTimestamp":"2019-04-30T01:39:19.069773Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"75f09178-7980-45c1-9e9a-7bbbb9a789b3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/75f09178-7980-45c1-9e9a-7bbbb9a789b3/ticks/636921851270988595","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"be434c7e-7243-4a20-a58a-3611e70fc7de","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"27194346-8460-4f80-8ff5-3fc1eafaf18e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"fec6704f-451b-4ded-9897-64b6ccbe49c7\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:47.0988595Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"0f0a08d3-04b1-4606-b550-2aa266799a56","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/0f0a08d3-04b1-4606-b550-2aa266799a56/ticks/636921851269338559","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"5d941214-7bbc-41ef-86dd-ebeb32c5d001","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a90d562e-90ac-4a50-9331-e80cc7f91025\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.1857446Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3954fd73-d2ec-4d31-970c-11bceb02f282","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3954fd73-d2ec-4d31-970c-11bceb02f282/ticks/636910485521607485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:52.1607485Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"47ea11cb-aa63-4eca-a101-fcdc9e383efa","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/47ea11cb-aa63-4eca-a101-fcdc9e383efa/ticks/636910485508373075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8373075Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b/ticks/636910485508223062","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8223062Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"01111053-a4cd-4a11-82bd-4473ee667d09","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/01111053-a4cd-4a11-82bd-4473ee667d09/ticks/636910485465079890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:46.9338559Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"de7b3279-8db2-405c-b018-9b5180aa03a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/de7b3279-8db2-405c-b018-9b5180aa03a9/ticks/636921851268438358","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:46.8438358Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"72fed6da-4e95-4ace-b9ef-5b002bed95c7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/72fed6da-4e95-4ace-b9ef-5b002bed95c7/ticks/636921851236275225","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.6275225Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f344c2c4-bb6f-447b-b8f8-10ab3137655b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/f344c2c4-bb6f-447b-b8f8-10ab3137655b/ticks/636921851234075203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.4075203Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"46282590-372d-4510-b0d8-a4c69a7163fd","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/46282590-372d-4510-b0d8-a4c69a7163fd/ticks/636921851221512397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:46.507989Z","submissionTimestamp":"2019-04-16T21:56:09.0663565Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6a8267-d352-4aa1-905f-fb58464af7d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/ba6a8267-d352-4aa1-905f-fb58464af7d4/ticks/636910485436480075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:43.6480075Z","submissionTimestamp":"2019-04-16T21:56:09.0653567Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:42.1512397Z","submissionTimestamp":"2019-04-30T01:39:00.0957365Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"b879db4c-70c2-4a8f-92c5-0dd178b3d928","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/b879db4c-70c2-4a8f-92c5-0dd178b3d928/ticks/636921851190962397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:39.0962397Z","submissionTimestamp":"2019-04-30T01:38:50.1188765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '91120' + - '94720' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:27 GMT + - Tue, 30 Apr 2019 01:40:23 GMT expires: - '-1' pragma: @@ -12378,105 +13078,109 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A57%3A36Z%20and%20correlationId%20eq%20%27f4189349-fdd0-4ca4-a24c-b1007eeec5fe%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A40%3A34Z%20and%20correlationId%20eq%20%27e325c561-fdee-4660-bfca-3fd77ef5865b%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"552f6d95-a208-47f8-a4b1-fc8dfd8896f8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/552f6d95-a208-47f8-a4b1-fc8dfd8896f8/ticks/636910486172038419","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"6aab40f5-57b9-442e-bd3a-c265ea122242","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"57b23627-7138-4521-9976-8f54a9a19c9c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/57b23627-7138-4521-9976-8f54a9a19c9c/ticks/636921851965949009","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"5a0bb140-1b3b-4770-ad79-8fae90fc688f","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:56:57.2038419Z","submissionTimestamp":"2019-04-16T21:57:18.1675627Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d591d9ae-c520-44f8-890a-908ac291212a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/d591d9ae-c520-44f8-890a-908ac291212a/ticks/636910485683053009","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"55ef4862-6f19-4d29-a412-4fe70fd01bf7","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:39:56.5949009Z","submissionTimestamp":"2019-04-30T01:40:19.0826059Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"eb1f7afc-5e14-4aa6-be1e-2ba7a986e5c5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/eb1f7afc-5e14-4aa6-be1e-2ba7a986e5c5/ticks/636921851809849140","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"929a2ef6-827e-437d-a52a-1f7034974df9","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:56:08.3053009Z","submissionTimestamp":"2019-04-16T21:56:24.1460814Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ed73bd1a-ace9-46aa-8c83-9f57dfd83038","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/ed73bd1a-ace9-46aa-8c83-9f57dfd83038/ticks/636910485586092620","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b446a22e-df64-45b8-b1ed-501218484a03","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.609262Z","submissionTimestamp":"2019-04-16T21:56:17.1254159Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"982296e0-ad5e-48cb-a895-176f3edbd374","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/982296e0-ad5e-48cb-a895-176f3edbd374/ticks/636910485581144106","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0c27b9b8-253a-46ee-ad7b-473404eb262a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:58.1144106Z","submissionTimestamp":"2019-04-16T21:56:11.0953021Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"d83537b0-6f54-436e-81d2-35e2cabd4555","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/d83537b0-6f54-436e-81d2-35e2cabd4555/ticks/636910485575785264","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"b6185b98-9de5-41b7-8cd1-272dca7402a5"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5785264Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"037ff8a6-9fc4-4965-86d5-4252252dd4ec","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/037ff8a6-9fc4-4965-86d5-4252252dd4ec/ticks/636910485575762435","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"be40c9eb-fa5b-4736-9c62-bf4f3cc760f8"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5762435Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3eb69f95-6434-40b5-90ce-ecc5ffe230e0","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/3eb69f95-6434-40b5-90ce-ecc5ffe230e0/ticks/636910485575748999","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"9e83dd5e-4757-49f7-8c1a-29069a67183b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5748999Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3c1e57f9-8ba2-4981-9961-fb4b3f5254e2","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/3c1e57f9-8ba2-4981-9961-fb4b3f5254e2/ticks/636910485575719525","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"a3423043-fff2-4047-aa41-e1285b9604ce"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK - (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-16T21:55:57.5719525Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"aed37c04-031c-4bef-81d5-17789b0c727f","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/aed37c04-031c-4bef-81d5-17789b0c727f/ticks/636910485574129910","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"337c7a48-3f78-4d2c-ae5e-e00dd4d2e3f7"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:57.412991Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"6ebd5203-731c-49c6-a302-f5934ce033a6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/6ebd5203-731c-49c6-a302-f5934ce033a6/ticks/636910485572879862","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.2879862Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"2fe4cf55-9060-4653-a483-c032405b54f3","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e/events/2fe4cf55-9060-4653-a483-c032405b54f3/ticks/636910485571898891","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"42ba2541-57be-4dd9-af27-26a355365e29","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1898891Z","submissionTimestamp":"2019-04-16T21:56:19.0946063Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"b50c38c7-5aeb-421c-845e-8813dda60601","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8/events/b50c38c7-5aeb-421c-845e-8813dda60601/ticks/636910485571811972","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"37b00839-56fd-4ab7-bac8-27a844aa60bf","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1811972Z","submissionTimestamp":"2019-04-16T21:56:15.0835192Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6e19c6-f405-481e-ad7b-fc68f3e91006","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549/events/ba6e19c6-f405-481e-ad7b-fc68f3e91006/ticks/636910485571369341","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"b347e6e3-357f-4a34-834e-a44dc0f027b7","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1369341Z","submissionTimestamp":"2019-04-16T21:56:12.0671659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555435311","nbf":"1555435311","exp":"1555464411","aio":"42ZgYFh3NbfOrpxNzWl3vkLsb11bAA==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"8c5Jgl5mhUWv228bXQ27AA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"db96c0f4-c181-4dbb-a319-cde67c56d947","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8cdc1950-7da8-4c5a-a271-ffcfad92a63a","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981/events/db96c0f4-c181-4dbb-a319-cde67c56d947/ticks/636910485571284809","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGE7PB264V5YJAFIX7WHU5WSVYBEROIWDTV5TFTDARIVSLFJO3G5TT/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c56d7752-d033-4d8b-8f06-565ed4d6b160","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create - or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:57.1284809Z","submissionTimestamp":"2019-04-16T21:56:18.0862671Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"8ab6ffa6-bf35-40e6-bc89-7550c28acce4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9f4ad30c-3e20-4454-aba2-9ce1186988fb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/8ab6ffa6-bf35-40e6-bc89-7550c28acce4/ticks/636910485565074705","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7fe9634d-4ed2-4f67-b859-f893e3fad921","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:56.5074705Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"17d19eb7-e37d-4137-84e4-ebc95eaf7d75","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/17d19eb7-e37d-4137-84e4-ebc95eaf7d75/ticks/636910485563425086","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"ef34d99c-b5d4-4e00-b7de-728f79bbb5e8","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ddc06e37-9c35-4e27-ab0c-709777c2f3a1\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"f3011ec4-abba-4c89-a1db-5229126c1d72\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.7\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:56.3425086Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"a936c997-757b-4f52-89d4-81a355cca016","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d1bef4f3-9fab-43b4-b412-d9dcf16aa4ef","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/a936c997-757b-4f52-89d4-81a355cca016/ticks/636910485556825268","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"77e5026c-ef2e-4621-999a-f6eeba23a069","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:55.6825268Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3f85c787-563a-4556-8d46-c3b171c6ee64","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3f85c787-563a-4556-8d46-c3b171c6ee64/ticks/636910485522407487","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"7660507d-c085-4819-b4e8-d77a8d9be179","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"d8cd10e4-51c3-4f15-9251-4dd225ebc3cb\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f58b9be5-8540-498b-9df3-c2f2d1f1aff5\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.2407487Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"1b1ef445-f401-4303-b130-5a73cfcd8c30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/1b1ef445-f401-4303-b130-5a73cfcd8c30/ticks/636910485521857446","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"f405d547-cdd5-4636-9230-7e29628dd60e","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e8da4f57-b778-4e05-99dc-b10ceaf15c94\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"7383d2e3-49eb-4b80-b5fd-f18ece55e10e\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:39:40.984914Z","submissionTimestamp":"2019-04-30T01:40:04.0855357Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"9f888478-96cf-493b-9238-d91fd359b3f6","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/9f888478-96cf-493b-9238-d91fd359b3f6/ticks/636921851494420611","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"fcb63f5a-572a-432e-bdae-ba0cbb5b5f71","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:39:09.4420611Z","submissionTimestamp":"2019-04-30T01:39:30.0760995Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"43606b75-9cfa-49de-8963-79243b06723d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/43606b75-9cfa-49de-8963-79243b06723d/ticks/636921851371719890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"c773890b-489f-4fb2-99ed-920f02767cd6"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:57.171989Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"90f19cf1-32e7-4059-9ace-a0988be544e9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/90f19cf1-32e7-4059-9ace-a0988be544e9/ticks/636921851369670158","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.9670158Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"3df9d0e9-a163-4ec4-9ba6-12664d432edc","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/3df9d0e9-a163-4ec4-9ba6-12664d432edc/ticks/636921851368814243","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"d60d8298-9313-49f1-af9d-0cc72c35d2fe"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.8814243Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"40bb695c-a973-428e-a3dd-1e120aa1562e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/40bb695c-a973-428e-a3dd-1e120aa1562e/ticks/636921851367432957","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"f12cb0d2-4eca-429b-94d0-290b83dee1fd"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7432957Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f59a5dbb-558c-414b-bb16-09827c14abcf","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/f59a5dbb-558c-414b-bb16-09827c14abcf/ticks/636921851367038575","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"53a0ee37-4e2b-4e19-bb6a-20dee3caa41c"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.7038575Z","submissionTimestamp":"2019-04-30T01:39:14.0968095Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/4d03c88a-1f34-45be-a6b0-3bb6e3fcdd60/ticks/636921851366920602","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"properties":{"statusCode":"OK","serviceRequestId":"47bfc8c2-6f9e-4415-811d-dfdec0f4740e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"OK","localizedValue":"OK + (HTTP Status Code: 200)"},"eventTimestamp":"2019-04-30T01:38:56.6920602Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"57d87acc-5e9d-47c0-92d4-e6d2dddaf144","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925/events/57d87acc-5e9d-47c0-92d4-e6d2dddaf144/ticks/636921851366114272","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"06413de0-77f8-427f-a32d-f2ee69ab4418","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.6114272Z","submissionTimestamp":"2019-04-30T01:39:14.079104Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"42970ab0-61a5-4540-8082-cc61f13dbc51","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe/events/42970ab0-61a5-4540-8082-cc61f13dbc51/ticks/636921851365632788","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"5987ef3d-be09-419f-878a-f829d9e727fd","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5632788Z","submissionTimestamp":"2019-04-30T01:39:13.1139408Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"4010cf11-285b-4be7-a553-2482fd339cc1","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731/events/4010cf11-285b-4be7-a553-2482fd339cc1/ticks/636921851365238208","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"53e3fdd1-f065-43c4-94d5-15667138693f","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5238208Z","submissionTimestamp":"2019-04-30T01:39:14.0958083Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/disks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7"},"caller":"05250873-b7a8-4392-b112-cf3c65d72ee1","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556587002","nbf":"1556587002","exp":"1556616102","aio":"42ZgYFh+ttw6eN6eo92+62RtonPCAQ==","appid":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","appidacr":"2","http://schemas.microsoft.com/identity/claims/identityprovider":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","http://schemas.microsoft.com/identity/claims/objectidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"05250873-b7a8-4392-b112-cf3c65d72ee1","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","uti":"RWxEMRR2rUqXUVkBG6gBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f8cb9ee1-f174-478f-97bb-1463acae6299","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"595d7ddd-de92-4c1d-8585-f7a2ad4215d3","clientIpAddress":"13.91.104.198","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7/events/f8cb9ee1-f174-478f-97bb-1463acae6299/ticks/636921851365170561","level":"Informational","resourceGroupName":"CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_CUSTOM_IMAGECNSPR6ZWGGTXMSZVO4Q4FWBJWRQZXWSHEBSIKPXNKWPV7RONYDZ/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7","resourceType":{"value":"Microsoft.Compute/disks","localizedValue":"Microsoft.Compute/disks"},"operationId":"c1447071-e51d-47e7-8928-719b124e7379","operationName":{"value":"Microsoft.Compute/disks/write","localizedValue":"Create + or Update Disk"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:56.5170561Z","submissionTimestamp":"2019-04-30T01:39:16.0888237Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"68192493-e9b6-4f18-87df-796c6817ee4e","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"700f1510-03bf-42d3-a429-5f3333cba1ce","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3/events/68192493-e9b6-4f18-87df-796c6817ee4e/ticks/636921851348155649","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"8cc25401-b49c-4a1b-a335-a37b812c6997","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:54.8155649Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/f43dc54d-a0b8-43a1-9cb3-cba5d9d16d71/ticks/636921851339994151","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c0939be3-1ab2-455c-a55e-b3963af34bce","responseBody":"{\"name\":\"vm3VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f96a67fa-c2f6-4b75-92df-645861da5fde\",\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\",\"etag\":\"W/\\\"4353906b-64bd-45fb-87be-8b5b07c4525c\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.9\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:53.9994151Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"cedcf517-e1d9-4ed3-883d-b1487acbe40c","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/cedcf517-e1d9-4ed3-883d-b1487acbe40c/ticks/636921851326528534","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d396f903-daf0-4b06-a2f4-19ba9f834fcf","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.6528534Z","submissionTimestamp":"2019-04-30T01:39:12.0911982Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"c976b137-b10d-4e0c-9c77-d5e19ffe95d3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b8029db0-f873-40f0-a5e3-17cd1abbfd3d","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/events/c976b137-b10d-4e0c-9c77-d5e19ffe95d3/ticks/636921851324777980","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"68abba45-2049-4efa-ac8f-7b6c6c67b90d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm3\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:52.477798Z","submissionTimestamp":"2019-04-30T01:39:12.082323Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"22856551-019f-48bb-b62a-4a7be93568ab","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/22856551-019f-48bb-b62a-4a7be93568ab/ticks/636921851319580640","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"b5491954-faf0-4406-95cc-d0c5596527b6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:51.958064Z","submissionTimestamp":"2019-04-30T01:39:19.069773Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"75f09178-7980-45c1-9e9a-7bbbb9a789b3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/75f09178-7980-45c1-9e9a-7bbbb9a789b3/ticks/636921851270988595","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"be434c7e-7243-4a20-a58a-3611e70fc7de","responseBody":"{\"name\":\"vm3PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\",\"etag\":\"W/\\\"27194346-8460-4f80-8ff5-3fc1eafaf18e\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"fec6704f-451b-4ded-9897-64b6ccbe49c7\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:47.0988595Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"0f0a08d3-04b1-4606-b550-2aa266799a56","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/0f0a08d3-04b1-4606-b550-2aa266799a56/ticks/636921851269338559","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"5d941214-7bbc-41ef-86dd-ebeb32c5d001","responseBody":"{\"name\":\"vm3NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a90d562e-90ac-4a50-9331-e80cc7f91025\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c0ef5708-086e-4dec-8ac2-d96977e77ba0\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:52.1857446Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"3954fd73-d2ec-4d31-970c-11bceb02f282","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/3954fd73-d2ec-4d31-970c-11bceb02f282/ticks/636910485521607485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:52.1607485Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"47ea11cb-aa63-4eca-a101-fcdc9e383efa","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9966355f-206e-4751-a5d6-8ec257789fa6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/47ea11cb-aa63-4eca-a101-fcdc9e383efa/ticks/636910485508373075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e7a3e413-d4e0-4c38-a36b-883c38f35245","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8373075Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"231aeec4-6262-4e68-ac8e-26e094e94aa3","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/42a3b318-8130-49ce-a8cd-fb2c4fa3ba6b/ticks/636910485508223062","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"9e129eb8-2277-484c-9d22-d71c68e30e87","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:50.8223062Z","submissionTimestamp":"2019-04-16T21:56:12.0876695Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"01111053-a4cd-4a11-82bd-4473ee667d09","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/01111053-a4cd-4a11-82bd-4473ee667d09/ticks/636910485465079890","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:46.9338559Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"de7b3279-8db2-405c-b018-9b5180aa03a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/de7b3279-8db2-405c-b018-9b5180aa03a9/ticks/636921851268438358","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:46.8438358Z","submissionTimestamp":"2019-04-30T01:39:02.1355377Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"72fed6da-4e95-4ace-b9ef-5b002bed95c7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e63dcd64-0ce7-4e3a-abeb-61d4d5ba29bf","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP/events/72fed6da-4e95-4ace-b9ef-5b002bed95c7/ticks/636921851236275225","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"8d6d4dc0-4359-4e21-bc81-48e5fec855d4","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.6275225Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"f344c2c4-bb6f-447b-b8f8-10ab3137655b","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"947cf79e-c35e-4e76-8775-89e89d31020f","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG/events/f344c2c4-bb6f-447b-b8f8-10ab3137655b/ticks/636921851234075203","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d12b7d03-5175-4a9d-aa54-466b6f1cf306","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:43.4075203Z","submissionTimestamp":"2019-04-30T01:39:02.134537Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"46282590-372d-4510-b0d8-a4c69a7163fd","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/46282590-372d-4510-b0d8-a4c69a7163fd/ticks/636921851221512397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:55:46.507989Z","submissionTimestamp":"2019-04-16T21:56:09.0663565Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","description":"","eventDataId":"ba6a8267-d352-4aa1-905f-fb58464af7d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"60658a18-6092-11e9-8bcd-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK/events/ba6a8267-d352-4aa1-905f-fb58464af7d4/ticks/636910485436480075","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:55:43.6480075Z","submissionTimestamp":"2019-04-16T21:56:09.0653567Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:38:42.1512397Z","submissionTimestamp":"2019-04-30T01:39:00.0957365Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","description":"","eventDataId":"b879db4c-70c2-4a8f-92c5-0dd178b3d928","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"acbe15b4-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg/events/b879db4c-70c2-4a8f-92c5-0dd178b3d928/ticks/636921851190962397","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:38:39.0962397Z","submissionTimestamp":"2019-04-30T01:38:50.1188765Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '91120' + - '94720' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:37 GMT + - Tue, 30 Apr 2019 01:40:34 GMT expires: - '-1' pragma: @@ -12509,10 +13213,10 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461551401009006?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450185646233767?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -12524,7 +13228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:47 GMT + - Tue, 30 Apr 2019 01:40:42 GMT expires: - '-1' pragma: @@ -12553,22 +13257,22 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","name":"vm_deploy_gPaplQG2fokdDC9JJI0CaOQIHrRNp9dK","properties":{"templateHash":"4446553922732161723","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:57:28.0529369Z","duration":"PT1M42.6762139S","correlationId":"f4189349-fdd0-4ca4-a24c-b1007eeec5fe","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm3PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm3"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","name":"vm_deploy_QnU9KNWPW9V17rRPHHmsQGlgCrrK5EAg","properties":{"templateHash":"15349835159270114301","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:40:16.3501893Z","duration":"PT1M35.4959422S","correlationId":"e325c561-fdee-4660-bfca-3fd77ef5865b","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_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm3PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm3VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm3"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP"}]}}' headers: cache-control: - no-cache content-length: - - '3265' + - '3266' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:46 GMT + - Tue, 30 Apr 2019 01:40:42 GMT expires: - '-1' pragma: @@ -12597,40 +13301,40 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"39647ebc-e0d9-44a6-919a-d9624f339cda\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"afe18d95-8e4a-437d-89be-1963b69a7f89\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981\",\r\n \ + \ \"name\": \"vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe\",\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_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm3_disk2_43c524cd031d4156912dcf224404863e\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm3_disk2_c6ca0bd535034656a151a6d7c7582de7\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\":\ \ \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7\"\ \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"vm3_disk3_a9a29346949440e1b50fd22062224549\",\r\n \"createOption\"\ + name\": \"vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731\",\r\n \"createOption\"\ : \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\"\ : {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731\"\ \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"\ - name\": \"vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8\",\r\n \"createOption\"\ + name\": \"vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925\",\r\n \"createOption\"\ : \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\"\ : {\r\n \"storageAccountType\": \"StandardSSD_LRS\",\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925\"\ \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"vm3\",\r\n \"adminUsername\": \"sdk-test-admin\"\ @@ -12642,35 +13346,35 @@ interactions: }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ : {\r\n \"computerName\": \"vm3\",\r\n \"osName\": \"ubuntu\",\r\ \n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\"\ - : \"2.2.38\",\r\n \"statuses\": [\r\n {\r\n \"\ + : \"2.2.40\",\r\n \"statuses\": [\r\n {\r\n \"\ code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\"\ ,\r\n \"displayStatus\": \"Ready\",\r\n \"message\"\ - : \"Guest Agent is running\",\r\n \"time\": \"2019-04-16T21:57:49+00:00\"\ + : \"Guest Agent is running\",\r\n \"time\": \"2019-04-30T01:40:44+00:00\"\ \r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n \ - \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981\"\ + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-16T21:55:58.3661603+00:00\"\r\n }\r\ - \n ]\r\n },\r\n {\r\n \"name\": \"vm3_disk2_43c524cd031d4156912dcf224404863e\"\ + \ \"time\": \"2019-04-30T01:38:57.650118+00:00\"\r\n }\r\n\ + \ ]\r\n },\r\n {\r\n \"name\": \"vm3_disk2_c6ca0bd535034656a151a6d7c7582de7\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-16T21:55:58.3661603+00:00\"\r\n }\r\ - \n ]\r\n },\r\n {\r\n \"name\": \"vm3_disk3_a9a29346949440e1b50fd22062224549\"\ + \ \"time\": \"2019-04-30T01:38:57.650118+00:00\"\r\n }\r\n\ + \ ]\r\n },\r\n {\r\n \"name\": \"vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-16T21:55:58.3661603+00:00\"\r\n }\r\ - \n ]\r\n },\r\n {\r\n \"name\": \"vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8\"\ + \ \"time\": \"2019-04-30T01:38:57.650118+00:00\"\r\n }\r\n\ + \ ]\r\n },\r\n {\r\n \"name\": \"vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2019-04-16T21:55:58.3661603+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\": \"2019-04-16T21:57:25.1786711+00:00\"\r\n \ + \ \"time\": \"2019-04-30T01:38:57.650118+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\": \"2019-04-30T01:40:13.5746642+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\"\ @@ -12680,11 +13384,11 @@ interactions: cache-control: - no-cache content-length: - - '5990' + - '5986' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:50 GMT + - Tue, 30 Apr 2019 01:40:43 GMT expires: - '-1' pragma: @@ -12701,7 +13405,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3960,Microsoft.Compute/LowCostGet30Min;31759 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31967 status: code: 200 message: OK @@ -12720,8 +13424,8 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -12729,23 +13433,23 @@ interactions: response: body: string: "{\r\n \"name\": \"vm3VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic\"\ - ,\r\n \"etag\": \"W/\\\"99936048-eb5b-43e5-9f4a-a08b4096affd\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"cadd0e8c-092d-4208-beb6-e6dc2a97f427\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddc06e37-9c35-4e27-ab0c-709777c2f3a1\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f96a67fa-c2f6-4b75-92df-645861da5fde\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm3\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\"\ - ,\r\n \"etag\": \"W/\\\"99936048-eb5b-43e5-9f4a-a08b4096affd\\\"\"\ + ,\r\n \"etag\": \"W/\\\"cadd0e8c-092d-4208-beb6-e6dc2a97f427\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"privateIPAddress\": \"10.0.0.7\",\r\n \"privateIPAllocationMethod\"\ + ,\r\n \"privateIPAddress\": \"10.0.0.9\",\r\n \"privateIPAllocationMethod\"\ : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"\ \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"\ \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\": \"d0nsyocv4zbudeif4fuec1hbwa.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-30-6D-71\",\r\n \"enableAcceleratedNetworking\"\ + internalDomainNameSuffix\": \"hadqnizctluu3be5eriq5cf3la.dx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-32-EE-3B\",\r\n \"enableAcceleratedNetworking\"\ : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkSecurityGroups/vm3NSG\"\ \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ @@ -12760,9 +13464,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:50 GMT + - Tue, 30 Apr 2019 01:40:44 GMT etag: - - W/"99936048-eb5b-43e5-9f4a-a08b4096affd" + - W/"cadd0e8c-092d-4208-beb6-e6dc2a97f427" expires: - '-1' pragma: @@ -12796,8 +13500,8 @@ interactions: - -g -n --image --admin-username --admin-password --authentication-type --storage-sku --data-disk-sizes-gb User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -12805,10 +13509,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vm3PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vm3PublicIP\"\ - ,\r\n \"etag\": \"W/\\\"5db7f558-0472-493e-9ea3-cbc5133b32f1\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"f659b713-f7b1-4444-8a48-08a39f0a2c57\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f58b9be5-8540-498b-9df3-c2f2d1f1aff5\"\ - ,\r\n \"ipAddress\": \"138.91.150.203\",\r\n \"publicIPAddressVersion\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fec6704f-451b-4ded-9897-64b6ccbe49c7\"\ + ,\r\n \"ipAddress\": \"13.91.216.218\",\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_custom_image000001/providers/Microsoft.Network/networkInterfaces/vm3VMNic/ipConfigurations/ipconfigvm3\"\ @@ -12819,13 +13523,13 @@ interactions: cache-control: - no-cache content-length: - - '1023' + - '1022' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:51 GMT + - Tue, 30 Apr 2019 01:40:44 GMT etag: - - W/"5db7f558-0472-493e-9ea3-cbc5133b32f1" + - W/"f659b713-f7b1-4444-8a48-08a39f0a2c57" expires: - '-1' pragma: @@ -12858,40 +13562,40 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachines/vm3?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"39647ebc-e0d9-44a6-919a-d9624f339cda\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"afe18d95-8e4a-437d-89be-1963b69a7f89\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n\ - \ \"name\": \"vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981\",\r\n \ + \ \"name\": \"vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe\",\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_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk1_b54ab05d6dd24165bfcb3ed79b8d1981\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk1_071a5a44fe2e4a2eacc7eb30c7b74cfe\"\ \r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm3_disk2_43c524cd031d4156912dcf224404863e\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm3_disk2_c6ca0bd535034656a151a6d7c7582de7\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\":\ \ \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk2_43c524cd031d4156912dcf224404863e\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk2_c6ca0bd535034656a151a6d7c7582de7\"\ \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"vm3_disk3_a9a29346949440e1b50fd22062224549\",\r\n \"createOption\"\ + name\": \"vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731\",\r\n \"createOption\"\ : \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\"\ : {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk3_a9a29346949440e1b50fd22062224549\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk3_b9739511b49f4dbd9725ac1e8d91a731\"\ \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 2,\r\n \"\ - name\": \"vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8\",\r\n \"createOption\"\ + name\": \"vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925\",\r\n \"createOption\"\ : \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\"\ : {\r\n \"storageAccountType\": \"StandardSSD_LRS\",\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk4_1a55b93fae0144e28dc75fc9c3a511c8\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm3_disk4_ceb735d74ce64ff3ad5b7f9182ced925\"\ \r\n },\r\n \"diskSizeGB\": 1,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"vm3\",\r\n \"adminUsername\": \"sdk-test-admin\"\ @@ -12912,7 +13616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:51 GMT + - Tue, 30 Apr 2019 01:40:44 GMT expires: - '-1' pragma: @@ -12929,7 +13633,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3959,Microsoft.Compute/LowCostGet30Min;31758 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31966 status: code: 200 message: OK @@ -12947,15 +13651,15 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:39:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001","name":"cli_test_vm_custom_image000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -12964,7 +13668,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:52 GMT + - Tue, 30 Apr 2019 01:40:45 GMT expires: - '-1' pragma: @@ -13047,13 +13751,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:52 GMT + - Tue, 30 Apr 2019 01:40:46 GMT etag: - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' expires: - - Tue, 16 Apr 2019 22:02:52 GMT + - Tue, 30 Apr 2019 01:45:46 GMT source-age: - - '285' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -13061,23 +13765,23 @@ interactions: via: - 1.1 varnish x-cache: - - HIT + - MISS x-cache-hits: - - '1' + - '0' x-content-type-options: - nosniff x-fastly-request-id: - - beeea2057caa7ae23a7a999f462402e01d06a382 + - ef35a93f19baf585410f0176edf1084268f3ecd7 x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - CAA6:4B1D:3E49C3:437C45:5CB64EC3 + - CBB8:37A7:45596:51E2C:5CC7A79E x-served-by: - - cache-sea1037-SEA + - cache-dfw18647-DFW x-timer: - - S1555451873.957578,VS0,VE1 + - S1556588446.338743,VS0,VE80 x-xss-protection: - 1; mode=block status: @@ -13097,12 +13801,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ @@ -13110,29 +13814,30 @@ interactions: \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ \ \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n\ \ \"lun\": 0,\r\n \"diskSizeGB\": 1,\r\n \"managedDisk\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n\ \ \"diskSizeGB\": 1,\r\n \"managedDisk\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ ,\r\n \"name\": \"img-from-managed\"\r\n}" headers: cache-control: - no-cache content-length: - - '2083' + - '2114' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:52 GMT + - Tue, 30 Apr 2019 01:40:46 GMT expires: - '-1' pragma: @@ -13149,7 +13854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1761 + - Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1765 status: code: 200 message: OK @@ -13167,12 +13872,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ @@ -13180,29 +13885,30 @@ interactions: \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ \ \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_e472032e278a4cdeb757d429b2becbb6\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_OsDisk_1_9bedc72c90aa41aeb8c4496c523d2371\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n\ \ \"lun\": 0,\r\n \"diskSizeGB\": 1,\r\n \"managedDisk\"\ - : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_1a3622e05b7247f5a9fc13b221f002a1\"\ + : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk2_81e08986e8094d30a03d58cca8f0e03d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n {\r\n \"lun\": 1,\r\n\ \ \"diskSizeGB\": 1,\r\n \"managedDisk\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_befe1a5908054aa28db2550bf021bdfe\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/disks/vm-managed-disk_disk3_3ebf08f3a3eb4a9b8c8b49f39f75a43d\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed\"\ ,\r\n \"name\": \"img-from-managed\"\r\n}" headers: cache-control: - no-cache content-length: - - '2083' + - '2114' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:53 GMT + - Tue, 30 Apr 2019 01:40:47 GMT expires: - '-1' pragma: @@ -13219,7 +13925,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1760 + - Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1764 status: code: 200 message: OK @@ -13237,8 +13943,8 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -13247,15 +13953,15 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm-unmanaged-diskVNET\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET\"\ - ,\r\n \"etag\": \"W/\\\"2962745a-0d77-4973-beb6-18a116b49946\\\"\",\r\ + ,\r\n \"etag\": \"W/\\\"e33aa9fe-f7ab-45b6-95f3-6197e77cd942\\\"\",\r\ \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"382c9b1e-f655-4143-9105-f168416ce1b0\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3060738-9a22-4ee9-849f-24510f88bd58\"\ ,\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\": \"vm-unmanaged-diskSubnet\",\r\ \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet\"\ - ,\r\n \"etag\": \"W/\\\"2962745a-0d77-4973-beb6-18a116b49946\\\"\ + ,\r\n \"etag\": \"W/\\\"e33aa9fe-f7ab-45b6-95f3-6197e77cd942\\\"\ \",\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\"\ @@ -13266,9 +13972,9 @@ interactions: \r\n },\r\n {\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage1VMNic/ipConfigurations/ipconfigfromimage1\"\ \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss1e8b2Nic/ipConfigurations/vmss1e8b2IPConfig\"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss180e0Nic/ipConfigurations/vmss180e0IPConfig\"\ \r\n },\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss1e8b2Nic/ipConfigurations/vmss1e8b2IPConfig\"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss180e0Nic/ipConfigurations/vmss180e0IPConfig\"\ \r\n },\r\n {\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/networkInterfaces/fromimage2VMNic/ipConfigurations/ipconfigfromimage2\"\ \r\n },\r\n {\r\n \"id\": \"\ @@ -13286,7 +13992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:57 GMT + - Tue, 30 Apr 2019 01:40:46 GMT expires: - '-1' pragma: @@ -13328,10 +14034,10 @@ interactions: {"storageAccountType": null}}, "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed"}, "dataDisks": [{"lun": 0, "managedDisk": {"storageAccountType": null}, "createOption": "fromImage"}, {"lun": 1, "managedDisk": {"storageAccountType": null}, "createOption": - "fromImage"}]}, "osProfile": {"computerNamePrefix": "vmss2aca9", "adminUsername": + "fromImage"}]}, "osProfile": {"computerNamePrefix": "vmss21675", "adminUsername": "sdk-test-admin", "adminPassword": "[parameters(\''adminPassword\'')]"}, "networkProfile": - {"networkInterfaceConfigurations": [{"name": "vmss2aca9Nic", "properties": {"primary": - "true", "ipConfigurations": [{"name": "vmss2aca9IPConfig", "properties": {"subnet": + {"networkInterfaceConfigurations": [{"name": "vmss21675Nic", "properties": {"primary": + "true", "ipConfigurations": [{"name": "vmss21675IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool"}]}}]}}]}}, @@ -13355,26 +14061,26 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","name":"vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","properties":{"templateHash":"14287067586527894212","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:58:00.3553712Z","duration":"PT1.2789744S","correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","name":"vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","properties":{"templateHash":"18298032574110354388","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:40:50.6213537Z","duration":"PT1.111431S","correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/operationStatuses/08586461550064012281?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/operationStatuses/08586450184359677086?api-version=2018-05-01 cache-control: - no-cache content-length: - - '2065' + - '2064' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:57:59 GMT + - Tue, 30 Apr 2019 01:40:49 GMT expires: - '-1' pragma: @@ -13384,7 +14090,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -13404,12 +14110,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A58%3A06Z%20and%20correlationId%20eq%20%275e2ed171-ed39-4a3f-bcab-cc10937b1118%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A40%3A57Z%20and%20correlationId%20eq%20%27e5e994aa-c51a-4c2c-9039-b1691f432147%27 response: body: string: '{"value":[]}' @@ -13421,7 +14127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:58:07 GMT + - Tue, 30 Apr 2019 01:40:57 GMT expires: - '-1' pragma: @@ -13455,28 +14161,28 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A58%3A16Z%20and%20correlationId%20eq%20%275e2ed171-ed39-4a3f-bcab-cc10937b1118%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A41%3A08Z%20and%20correlationId%20eq%20%27e5e994aa-c51a-4c2c-9039-b1691f432147%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"f06ba6bb-262d-4c98-9a70-9636e0eae7b4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/f06ba6bb-262d-4c98-9a70-9636e0eae7b4/ticks/636910486774159189","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:57:57.4159189Z","submissionTimestamp":"2019-04-16T21:58:16.0784788Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"68b32732-c9e3-466a-b4fb-bc60589baf96","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/68b32732-c9e3-466a-b4fb-bc60589baf96/ticks/636921852477748804","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:47.7748804Z","submissionTimestamp":"2019-04-30T01:41:00.1161454Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '3716' + - '3718' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:58:17 GMT + - Tue, 30 Apr 2019 01:41:08 GMT expires: - '-1' pragma: @@ -13510,42 +14216,33 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A58%3A27Z%20and%20correlationId%20eq%20%275e2ed171-ed39-4a3f-bcab-cc10937b1118%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A41%3A18Z%20and%20correlationId%20eq%20%27e5e994aa-c51a-4c2c-9039-b1691f432147%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"73a08f71-79fd-4c4c-8659-8f2bab662f02","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/73a08f71-79fd-4c4c-8659-8f2bab662f02/ticks/636910486843872944","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ec63a4d2-3ad0-4fea-b955-48216413d580","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"12a9eb25-f5b5-45c8-bcb0-82b296d7b51f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"90642693-ceb7-4f4a-88d0-44862003d8e4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:04.3872944Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c25be059-0013-443b-a354-1fd26662f4d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/c25be059-0013-443b-a354-1fd26662f4d9/ticks/636910486841673276","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:04.1673276Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"4676bc19-5131-4ef8-b972-93e42248a50c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/4676bc19-5131-4ef8-b972-93e42248a50c/ticks/636910486817923115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","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":"2019-04-16T21:58:01.7923115Z","submissionTimestamp":"2019-04-16T21:58:24.1026804Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"9040dd4a-370b-4e95-a8c6-eeced6d8be70","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/9040dd4a-370b-4e95-a8c6-eeced6d8be70/ticks/636910486805109177","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"5cc719d9-b83e-4b7f-ba5d-a042a748e591","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/5cc719d9-b83e-4b7f-ba5d-a042a748e591/ticks/636921852508598823","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:00.5109177Z","submissionTimestamp":"2019-04-16T21:58:26.0778005Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"f06ba6bb-262d-4c98-9a70-9636e0eae7b4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/f06ba6bb-262d-4c98-9a70-9636e0eae7b4/ticks/636910486774159189","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:57:57.4159189Z","submissionTimestamp":"2019-04-16T21:58:16.0784788Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:50.8598823Z","submissionTimestamp":"2019-04-30T01:41:10.087769Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"68b32732-c9e3-466a-b4fb-bc60589baf96","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/68b32732-c9e3-466a-b4fb-bc60589baf96/ticks/636921852477748804","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:47.7748804Z","submissionTimestamp":"2019-04-30T01:41:00.1161454Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '19341' + - '7522' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:58:28 GMT + - Tue, 30 Apr 2019 01:41:18 GMT expires: - '-1' pragma: @@ -13577,10 +14274,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461550064012281?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450184359677086?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -13592,7 +14289,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:58:29 GMT + - Tue, 30 Apr 2019 01:41:20 GMT expires: - '-1' pragma: @@ -13622,58 +14319,49 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A58%3A37Z%20and%20correlationId%20eq%20%275e2ed171-ed39-4a3f-bcab-cc10937b1118%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"65f22ff0-3643-40c9-98b1-387088e7ca5e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/65f22ff0-3643-40c9-98b1-387088e7ca5e/ticks/636910486925627913","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"f1e041b1-6bc8-4102-9b6f-506e01eb2947"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:12.5627913Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"2e908ed1-cd6b-4bf6-bc82-357f38987402","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/2e908ed1-cd6b-4bf6-bc82-357f38987402/ticks/636910486923329526","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:12.3329526Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"6cf7d896-c929-43af-8096-c29c5ac42df8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/6cf7d896-c929-43af-8096-c29c5ac42df8/ticks/636910486901223058","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.1223058Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"956987ee-d8b2-4263-8e6b-b73a78fb4944","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/956987ee-d8b2-4263-8e6b-b73a78fb4944/ticks/636910486892787076","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"c6b44507-fafe-487b-bf97-10082fa655ef","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"406d590f-18ec-4a66-b05b-7073d6069724\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-16T21:58:09.2787076Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"a1106fba-ff07-4add-94ca-13f5e2b65f62","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/a1106fba-ff07-4add-94ca-13f5e2b65f62/ticks/636910486876428485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:07.6428485Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"73a08f71-79fd-4c4c-8659-8f2bab662f02","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/73a08f71-79fd-4c4c-8659-8f2bab662f02/ticks/636910486843872944","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ec63a4d2-3ad0-4fea-b955-48216413d580","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"12a9eb25-f5b5-45c8-bcb0-82b296d7b51f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"90642693-ceb7-4f4a-88d0-44862003d8e4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:04.3872944Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c25be059-0013-443b-a354-1fd26662f4d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/c25be059-0013-443b-a354-1fd26662f4d9/ticks/636910486841673276","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:04.1673276Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"4676bc19-5131-4ef8-b972-93e42248a50c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/4676bc19-5131-4ef8-b972-93e42248a50c/ticks/636910486817923115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","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":"2019-04-16T21:58:01.7923115Z","submissionTimestamp":"2019-04-16T21:58:24.1026804Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"9040dd4a-370b-4e95-a8c6-eeced6d8be70","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/9040dd4a-370b-4e95-a8c6-eeced6d8be70/ticks/636910486805109177","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A41%3A29Z%20and%20correlationId%20eq%20%27e5e994aa-c51a-4c2c-9039-b1691f432147%27 + response: + body: + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"ba9964f6-7747-4af6-90d3-4e419ee28898","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/ba9964f6-7747-4af6-90d3-4e419ee28898/ticks/636921852627155870","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"ac988b10-a645-48fb-9dc4-db831a8ca267"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:41:02.715587Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b401e26e-b8ec-4915-8b1f-e9f72c68a9d7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/b401e26e-b8ec-4915-8b1f-e9f72c68a9d7/ticks/636921852579358244","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:57.9358244Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"f600f875-7dd5-4bbc-a281-9c514549452a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/f600f875-7dd5-4bbc-a281-9c514549452a/ticks/636921852548656881","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"fb7492ae-e261-4c32-b442-b10a06cf3655","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"0dcf845c-7ac5-4fa9-bfbe-0c6d6457ba7a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a04b52a7-377f-4bb2-a896-9a3d2e428852\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:54.8656881Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"8dd53f2c-09af-490c-812e-96f2475739ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/8dd53f2c-09af-490c-812e-96f2475739ef/ticks/636921852546464533","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:54.6464533Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"02a185f3-e23d-4992-9fc2-bd81ba188889","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/02a185f3-e23d-4992-9fc2-bd81ba188889/ticks/636921852522517479","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","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":"2019-04-30T01:40:52.2517479Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"5cc719d9-b83e-4b7f-ba5d-a042a748e591","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/5cc719d9-b83e-4b7f-ba5d-a042a748e591/ticks/636921852508598823","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:00.5109177Z","submissionTimestamp":"2019-04-16T21:58:26.0778005Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"f06ba6bb-262d-4c98-9a70-9636e0eae7b4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/f06ba6bb-262d-4c98-9a70-9636e0eae7b4/ticks/636910486774159189","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:57:57.4159189Z","submissionTimestamp":"2019-04-16T21:58:16.0784788Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:50.8598823Z","submissionTimestamp":"2019-04-30T01:41:10.087769Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"68b32732-c9e3-466a-b4fb-bc60589baf96","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/68b32732-c9e3-466a-b4fb-bc60589baf96/ticks/636921852477748804","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:47.7748804Z","submissionTimestamp":"2019-04-30T01:41:00.1161454Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '41720' + - '27691' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:58:38 GMT + - Tue, 30 Apr 2019 01:41:29 GMT expires: - '-1' pragma: @@ -13707,65 +14395,65 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A58%3A48Z%20and%20correlationId%20eq%20%275e2ed171-ed39-4a3f-bcab-cc10937b1118%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A41%3A39Z%20and%20correlationId%20eq%20%27e5e994aa-c51a-4c2c-9039-b1691f432147%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c3ccad08-b7c8-4e92-98a5-1b5b23a910dc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/c3ccad08-b7c8-4e92-98a5-1b5b23a910dc/ticks/636910487043025336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c725566a-89c2-4170-acf5-0625dcd8f4fd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"cf3ac514-718c-4748-a77b-c9d0a39ac1e5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/cf3ac514-718c-4748-a77b-c9d0a39ac1e5/ticks/636921852739866260","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5c89c82c-d4f3-4aa2-92e9-d641a925668f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:24.3025336Z","submissionTimestamp":"2019-04-16T21:58:40.1003926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"65f22ff0-3643-40c9-98b1-387088e7ca5e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/65f22ff0-3643-40c9-98b1-387088e7ca5e/ticks/636910486925627913","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"f1e041b1-6bc8-4102-9b6f-506e01eb2947"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:12.5627913Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"2e908ed1-cd6b-4bf6-bc82-357f38987402","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/2e908ed1-cd6b-4bf6-bc82-357f38987402/ticks/636910486923329526","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:12.3329526Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"eff3cb0a-c1b5-4827-bb73-9fc918089b99","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/eff3cb0a-c1b5-4827-bb73-9fc918089b99/ticks/636910486902281916","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"101b468c-574f-475c-8688-25448c0e9893","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.2281916Z","submissionTimestamp":"2019-04-16T21:58:35.0913559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"6cf7d896-c929-43af-8096-c29c5ac42df8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/6cf7d896-c929-43af-8096-c29c5ac42df8/ticks/636910486901223058","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.1223058Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"956987ee-d8b2-4263-8e6b-b73a78fb4944","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/956987ee-d8b2-4263-8e6b-b73a78fb4944/ticks/636910486892787076","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"c6b44507-fafe-487b-bf97-10082fa655ef","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"406d590f-18ec-4a66-b05b-7073d6069724\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-16T21:58:09.2787076Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"a1106fba-ff07-4add-94ca-13f5e2b65f62","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/a1106fba-ff07-4add-94ca-13f5e2b65f62/ticks/636910486876428485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:07.6428485Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"73a08f71-79fd-4c4c-8659-8f2bab662f02","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/73a08f71-79fd-4c4c-8659-8f2bab662f02/ticks/636910486843872944","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ec63a4d2-3ad0-4fea-b955-48216413d580","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"12a9eb25-f5b5-45c8-bcb0-82b296d7b51f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"90642693-ceb7-4f4a-88d0-44862003d8e4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:04.3872944Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c25be059-0013-443b-a354-1fd26662f4d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/c25be059-0013-443b-a354-1fd26662f4d9/ticks/636910486841673276","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:04.1673276Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"4676bc19-5131-4ef8-b972-93e42248a50c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/4676bc19-5131-4ef8-b972-93e42248a50c/ticks/636910486817923115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","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":"2019-04-16T21:58:01.7923115Z","submissionTimestamp":"2019-04-16T21:58:24.1026804Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"9040dd4a-370b-4e95-a8c6-eeced6d8be70","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/9040dd4a-370b-4e95-a8c6-eeced6d8be70/ticks/636910486805109177","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:13.986626Z","submissionTimestamp":"2019-04-30T01:41:34.0652039Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"ba9964f6-7747-4af6-90d3-4e419ee28898","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/ba9964f6-7747-4af6-90d3-4e419ee28898/ticks/636921852627155870","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"ac988b10-a645-48fb-9dc4-db831a8ca267"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:41:02.715587Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc/ticks/636921852625050665","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:02.5050665Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"d456b2de-7add-4af7-bac8-fff2f0a74b0c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/d456b2de-7add-4af7-bac8-fff2f0a74b0c/ticks/636921852603908902","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.3908902Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"e0c86835-3f75-42ab-8c35-c6c260fc2b58","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/e0c86835-3f75-42ab-8c35-c6c260fc2b58/ticks/636921852602144007","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"86d66eae-f4ea-484e-881b-dcf54e5c3a67","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.2144007Z","submissionTimestamp":"2019-04-30T01:41:29.0742854Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"1fefb16f-2bb4-44c6-b35c-b48685a8f15a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/1fefb16f-2bb4-44c6-b35c-b48685a8f15a/ticks/636921852594981588","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"55fc2510-a9c3-4400-83f9-e913c295cdc6","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f95936ba-333b-483d-aa93-4bc46ce8cf14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-30T01:40:59.4981588Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b401e26e-b8ec-4915-8b1f-e9f72c68a9d7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/b401e26e-b8ec-4915-8b1f-e9f72c68a9d7/ticks/636921852579358244","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:57.9358244Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"f600f875-7dd5-4bbc-a281-9c514549452a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/f600f875-7dd5-4bbc-a281-9c514549452a/ticks/636921852548656881","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"fb7492ae-e261-4c32-b442-b10a06cf3655","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"0dcf845c-7ac5-4fa9-bfbe-0c6d6457ba7a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a04b52a7-377f-4bb2-a896-9a3d2e428852\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:54.8656881Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"8dd53f2c-09af-490c-812e-96f2475739ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/8dd53f2c-09af-490c-812e-96f2475739ef/ticks/636921852546464533","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:54.6464533Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"02a185f3-e23d-4992-9fc2-bd81ba188889","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/02a185f3-e23d-4992-9fc2-bd81ba188889/ticks/636921852522517479","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","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":"2019-04-30T01:40:52.2517479Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"5cc719d9-b83e-4b7f-ba5d-a042a748e591","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/5cc719d9-b83e-4b7f-ba5d-a042a748e591/ticks/636921852508598823","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:00.5109177Z","submissionTimestamp":"2019-04-16T21:58:26.0778005Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"f06ba6bb-262d-4c98-9a70-9636e0eae7b4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/f06ba6bb-262d-4c98-9a70-9636e0eae7b4/ticks/636910486774159189","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:57:57.4159189Z","submissionTimestamp":"2019-04-16T21:58:16.0784788Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:50.8598823Z","submissionTimestamp":"2019-04-30T01:41:10.087769Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"68b32732-c9e3-466a-b4fb-bc60589baf96","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/68b32732-c9e3-466a-b4fb-bc60589baf96/ticks/636921852477748804","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:47.7748804Z","submissionTimestamp":"2019-04-30T01:41:00.1161454Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '48905' + - '48926' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:58:49 GMT + - Tue, 30 Apr 2019 01:41:39 GMT expires: - '-1' pragma: @@ -13799,65 +14487,65 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A58%3A58Z%20and%20correlationId%20eq%20%275e2ed171-ed39-4a3f-bcab-cc10937b1118%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A41%3A50Z%20and%20correlationId%20eq%20%27e5e994aa-c51a-4c2c-9039-b1691f432147%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c3ccad08-b7c8-4e92-98a5-1b5b23a910dc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/c3ccad08-b7c8-4e92-98a5-1b5b23a910dc/ticks/636910487043025336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c725566a-89c2-4170-acf5-0625dcd8f4fd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"cf3ac514-718c-4748-a77b-c9d0a39ac1e5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/cf3ac514-718c-4748-a77b-c9d0a39ac1e5/ticks/636921852739866260","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5c89c82c-d4f3-4aa2-92e9-d641a925668f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:24.3025336Z","submissionTimestamp":"2019-04-16T21:58:40.1003926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"65f22ff0-3643-40c9-98b1-387088e7ca5e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/65f22ff0-3643-40c9-98b1-387088e7ca5e/ticks/636910486925627913","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"f1e041b1-6bc8-4102-9b6f-506e01eb2947"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:12.5627913Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"2e908ed1-cd6b-4bf6-bc82-357f38987402","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/2e908ed1-cd6b-4bf6-bc82-357f38987402/ticks/636910486923329526","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:12.3329526Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"eff3cb0a-c1b5-4827-bb73-9fc918089b99","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/eff3cb0a-c1b5-4827-bb73-9fc918089b99/ticks/636910486902281916","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"101b468c-574f-475c-8688-25448c0e9893","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.2281916Z","submissionTimestamp":"2019-04-16T21:58:35.0913559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"6cf7d896-c929-43af-8096-c29c5ac42df8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/6cf7d896-c929-43af-8096-c29c5ac42df8/ticks/636910486901223058","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.1223058Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"956987ee-d8b2-4263-8e6b-b73a78fb4944","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/956987ee-d8b2-4263-8e6b-b73a78fb4944/ticks/636910486892787076","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"c6b44507-fafe-487b-bf97-10082fa655ef","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"406d590f-18ec-4a66-b05b-7073d6069724\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-16T21:58:09.2787076Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"a1106fba-ff07-4add-94ca-13f5e2b65f62","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/a1106fba-ff07-4add-94ca-13f5e2b65f62/ticks/636910486876428485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:07.6428485Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"73a08f71-79fd-4c4c-8659-8f2bab662f02","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/73a08f71-79fd-4c4c-8659-8f2bab662f02/ticks/636910486843872944","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ec63a4d2-3ad0-4fea-b955-48216413d580","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"12a9eb25-f5b5-45c8-bcb0-82b296d7b51f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"90642693-ceb7-4f4a-88d0-44862003d8e4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:04.3872944Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c25be059-0013-443b-a354-1fd26662f4d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/c25be059-0013-443b-a354-1fd26662f4d9/ticks/636910486841673276","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:04.1673276Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"4676bc19-5131-4ef8-b972-93e42248a50c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/4676bc19-5131-4ef8-b972-93e42248a50c/ticks/636910486817923115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","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":"2019-04-16T21:58:01.7923115Z","submissionTimestamp":"2019-04-16T21:58:24.1026804Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"9040dd4a-370b-4e95-a8c6-eeced6d8be70","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/9040dd4a-370b-4e95-a8c6-eeced6d8be70/ticks/636910486805109177","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:13.986626Z","submissionTimestamp":"2019-04-30T01:41:34.0652039Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"ba9964f6-7747-4af6-90d3-4e419ee28898","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/ba9964f6-7747-4af6-90d3-4e419ee28898/ticks/636921852627155870","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"ac988b10-a645-48fb-9dc4-db831a8ca267"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:41:02.715587Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc/ticks/636921852625050665","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:02.5050665Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"d456b2de-7add-4af7-bac8-fff2f0a74b0c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/d456b2de-7add-4af7-bac8-fff2f0a74b0c/ticks/636921852603908902","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.3908902Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"e0c86835-3f75-42ab-8c35-c6c260fc2b58","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/e0c86835-3f75-42ab-8c35-c6c260fc2b58/ticks/636921852602144007","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"86d66eae-f4ea-484e-881b-dcf54e5c3a67","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.2144007Z","submissionTimestamp":"2019-04-30T01:41:29.0742854Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"1fefb16f-2bb4-44c6-b35c-b48685a8f15a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/1fefb16f-2bb4-44c6-b35c-b48685a8f15a/ticks/636921852594981588","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"55fc2510-a9c3-4400-83f9-e913c295cdc6","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f95936ba-333b-483d-aa93-4bc46ce8cf14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-30T01:40:59.4981588Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b401e26e-b8ec-4915-8b1f-e9f72c68a9d7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/b401e26e-b8ec-4915-8b1f-e9f72c68a9d7/ticks/636921852579358244","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:57.9358244Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"f600f875-7dd5-4bbc-a281-9c514549452a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/f600f875-7dd5-4bbc-a281-9c514549452a/ticks/636921852548656881","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"fb7492ae-e261-4c32-b442-b10a06cf3655","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"0dcf845c-7ac5-4fa9-bfbe-0c6d6457ba7a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a04b52a7-377f-4bb2-a896-9a3d2e428852\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:54.8656881Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"8dd53f2c-09af-490c-812e-96f2475739ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/8dd53f2c-09af-490c-812e-96f2475739ef/ticks/636921852546464533","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:54.6464533Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"02a185f3-e23d-4992-9fc2-bd81ba188889","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/02a185f3-e23d-4992-9fc2-bd81ba188889/ticks/636921852522517479","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","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":"2019-04-30T01:40:52.2517479Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"5cc719d9-b83e-4b7f-ba5d-a042a748e591","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/5cc719d9-b83e-4b7f-ba5d-a042a748e591/ticks/636921852508598823","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:00.5109177Z","submissionTimestamp":"2019-04-16T21:58:26.0778005Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"f06ba6bb-262d-4c98-9a70-9636e0eae7b4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/f06ba6bb-262d-4c98-9a70-9636e0eae7b4/ticks/636910486774159189","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:57:57.4159189Z","submissionTimestamp":"2019-04-16T21:58:16.0784788Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:50.8598823Z","submissionTimestamp":"2019-04-30T01:41:10.087769Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"68b32732-c9e3-466a-b4fb-bc60589baf96","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/68b32732-c9e3-466a-b4fb-bc60589baf96/ticks/636921852477748804","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:47.7748804Z","submissionTimestamp":"2019-04-30T01:41:00.1161454Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '48905' + - '48926' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:58:59 GMT + - Tue, 30 Apr 2019 01:41:50 GMT expires: - '-1' pragma: @@ -13889,10 +14577,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461550064012281?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450184359677086?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -13904,7 +14592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:59:00 GMT + - Tue, 30 Apr 2019 01:41:50 GMT expires: - '-1' pragma: @@ -13934,65 +14622,65 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A59%3A08Z%20and%20correlationId%20eq%20%275e2ed171-ed39-4a3f-bcab-cc10937b1118%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A42%3A00Z%20and%20correlationId%20eq%20%27e5e994aa-c51a-4c2c-9039-b1691f432147%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c3ccad08-b7c8-4e92-98a5-1b5b23a910dc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/c3ccad08-b7c8-4e92-98a5-1b5b23a910dc/ticks/636910487043025336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c725566a-89c2-4170-acf5-0625dcd8f4fd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"cf3ac514-718c-4748-a77b-c9d0a39ac1e5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/cf3ac514-718c-4748-a77b-c9d0a39ac1e5/ticks/636921852739866260","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5c89c82c-d4f3-4aa2-92e9-d641a925668f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:24.3025336Z","submissionTimestamp":"2019-04-16T21:58:40.1003926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"65f22ff0-3643-40c9-98b1-387088e7ca5e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/65f22ff0-3643-40c9-98b1-387088e7ca5e/ticks/636910486925627913","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"f1e041b1-6bc8-4102-9b6f-506e01eb2947"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:12.5627913Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"2e908ed1-cd6b-4bf6-bc82-357f38987402","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/2e908ed1-cd6b-4bf6-bc82-357f38987402/ticks/636910486923329526","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:12.3329526Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"eff3cb0a-c1b5-4827-bb73-9fc918089b99","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/eff3cb0a-c1b5-4827-bb73-9fc918089b99/ticks/636910486902281916","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"101b468c-574f-475c-8688-25448c0e9893","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.2281916Z","submissionTimestamp":"2019-04-16T21:58:35.0913559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"6cf7d896-c929-43af-8096-c29c5ac42df8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/6cf7d896-c929-43af-8096-c29c5ac42df8/ticks/636910486901223058","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.1223058Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"956987ee-d8b2-4263-8e6b-b73a78fb4944","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/956987ee-d8b2-4263-8e6b-b73a78fb4944/ticks/636910486892787076","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"c6b44507-fafe-487b-bf97-10082fa655ef","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"406d590f-18ec-4a66-b05b-7073d6069724\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-16T21:58:09.2787076Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"a1106fba-ff07-4add-94ca-13f5e2b65f62","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/a1106fba-ff07-4add-94ca-13f5e2b65f62/ticks/636910486876428485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:07.6428485Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"73a08f71-79fd-4c4c-8659-8f2bab662f02","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/73a08f71-79fd-4c4c-8659-8f2bab662f02/ticks/636910486843872944","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ec63a4d2-3ad0-4fea-b955-48216413d580","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"12a9eb25-f5b5-45c8-bcb0-82b296d7b51f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"90642693-ceb7-4f4a-88d0-44862003d8e4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:04.3872944Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c25be059-0013-443b-a354-1fd26662f4d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/c25be059-0013-443b-a354-1fd26662f4d9/ticks/636910486841673276","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:04.1673276Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"4676bc19-5131-4ef8-b972-93e42248a50c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/4676bc19-5131-4ef8-b972-93e42248a50c/ticks/636910486817923115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","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":"2019-04-16T21:58:01.7923115Z","submissionTimestamp":"2019-04-16T21:58:24.1026804Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"9040dd4a-370b-4e95-a8c6-eeced6d8be70","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/9040dd4a-370b-4e95-a8c6-eeced6d8be70/ticks/636910486805109177","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:13.986626Z","submissionTimestamp":"2019-04-30T01:41:34.0652039Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"ba9964f6-7747-4af6-90d3-4e419ee28898","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/ba9964f6-7747-4af6-90d3-4e419ee28898/ticks/636921852627155870","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"ac988b10-a645-48fb-9dc4-db831a8ca267"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:41:02.715587Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc/ticks/636921852625050665","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:02.5050665Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"d456b2de-7add-4af7-bac8-fff2f0a74b0c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/d456b2de-7add-4af7-bac8-fff2f0a74b0c/ticks/636921852603908902","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.3908902Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"e0c86835-3f75-42ab-8c35-c6c260fc2b58","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/e0c86835-3f75-42ab-8c35-c6c260fc2b58/ticks/636921852602144007","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"86d66eae-f4ea-484e-881b-dcf54e5c3a67","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.2144007Z","submissionTimestamp":"2019-04-30T01:41:29.0742854Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"1fefb16f-2bb4-44c6-b35c-b48685a8f15a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/1fefb16f-2bb4-44c6-b35c-b48685a8f15a/ticks/636921852594981588","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"55fc2510-a9c3-4400-83f9-e913c295cdc6","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f95936ba-333b-483d-aa93-4bc46ce8cf14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-30T01:40:59.4981588Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b401e26e-b8ec-4915-8b1f-e9f72c68a9d7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/b401e26e-b8ec-4915-8b1f-e9f72c68a9d7/ticks/636921852579358244","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:57.9358244Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"f600f875-7dd5-4bbc-a281-9c514549452a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/f600f875-7dd5-4bbc-a281-9c514549452a/ticks/636921852548656881","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"fb7492ae-e261-4c32-b442-b10a06cf3655","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"0dcf845c-7ac5-4fa9-bfbe-0c6d6457ba7a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a04b52a7-377f-4bb2-a896-9a3d2e428852\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:54.8656881Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"8dd53f2c-09af-490c-812e-96f2475739ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/8dd53f2c-09af-490c-812e-96f2475739ef/ticks/636921852546464533","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:54.6464533Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"02a185f3-e23d-4992-9fc2-bd81ba188889","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/02a185f3-e23d-4992-9fc2-bd81ba188889/ticks/636921852522517479","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","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":"2019-04-30T01:40:52.2517479Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"5cc719d9-b83e-4b7f-ba5d-a042a748e591","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/5cc719d9-b83e-4b7f-ba5d-a042a748e591/ticks/636921852508598823","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:00.5109177Z","submissionTimestamp":"2019-04-16T21:58:26.0778005Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"f06ba6bb-262d-4c98-9a70-9636e0eae7b4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/f06ba6bb-262d-4c98-9a70-9636e0eae7b4/ticks/636910486774159189","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:57:57.4159189Z","submissionTimestamp":"2019-04-16T21:58:16.0784788Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:50.8598823Z","submissionTimestamp":"2019-04-30T01:41:10.087769Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"68b32732-c9e3-466a-b4fb-bc60589baf96","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/68b32732-c9e3-466a-b4fb-bc60589baf96/ticks/636921852477748804","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:47.7748804Z","submissionTimestamp":"2019-04-30T01:41:00.1161454Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '48905' + - '48926' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:59:10 GMT + - Tue, 30 Apr 2019 01:42:01 GMT expires: - '-1' pragma: @@ -14026,65 +14714,65 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A59%3A19Z%20and%20correlationId%20eq%20%275e2ed171-ed39-4a3f-bcab-cc10937b1118%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A42%3A11Z%20and%20correlationId%20eq%20%27e5e994aa-c51a-4c2c-9039-b1691f432147%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c3ccad08-b7c8-4e92-98a5-1b5b23a910dc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/c3ccad08-b7c8-4e92-98a5-1b5b23a910dc/ticks/636910487043025336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c725566a-89c2-4170-acf5-0625dcd8f4fd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"cf3ac514-718c-4748-a77b-c9d0a39ac1e5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/cf3ac514-718c-4748-a77b-c9d0a39ac1e5/ticks/636921852739866260","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5c89c82c-d4f3-4aa2-92e9-d641a925668f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:24.3025336Z","submissionTimestamp":"2019-04-16T21:58:40.1003926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"65f22ff0-3643-40c9-98b1-387088e7ca5e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/65f22ff0-3643-40c9-98b1-387088e7ca5e/ticks/636910486925627913","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"f1e041b1-6bc8-4102-9b6f-506e01eb2947"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:12.5627913Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"2e908ed1-cd6b-4bf6-bc82-357f38987402","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/2e908ed1-cd6b-4bf6-bc82-357f38987402/ticks/636910486923329526","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:12.3329526Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"eff3cb0a-c1b5-4827-bb73-9fc918089b99","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/eff3cb0a-c1b5-4827-bb73-9fc918089b99/ticks/636910486902281916","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"101b468c-574f-475c-8688-25448c0e9893","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.2281916Z","submissionTimestamp":"2019-04-16T21:58:35.0913559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"6cf7d896-c929-43af-8096-c29c5ac42df8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/6cf7d896-c929-43af-8096-c29c5ac42df8/ticks/636910486901223058","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.1223058Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"956987ee-d8b2-4263-8e6b-b73a78fb4944","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/956987ee-d8b2-4263-8e6b-b73a78fb4944/ticks/636910486892787076","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"c6b44507-fafe-487b-bf97-10082fa655ef","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"406d590f-18ec-4a66-b05b-7073d6069724\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-16T21:58:09.2787076Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"a1106fba-ff07-4add-94ca-13f5e2b65f62","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/a1106fba-ff07-4add-94ca-13f5e2b65f62/ticks/636910486876428485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:07.6428485Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"73a08f71-79fd-4c4c-8659-8f2bab662f02","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/73a08f71-79fd-4c4c-8659-8f2bab662f02/ticks/636910486843872944","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ec63a4d2-3ad0-4fea-b955-48216413d580","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"12a9eb25-f5b5-45c8-bcb0-82b296d7b51f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"90642693-ceb7-4f4a-88d0-44862003d8e4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:04.3872944Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c25be059-0013-443b-a354-1fd26662f4d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/c25be059-0013-443b-a354-1fd26662f4d9/ticks/636910486841673276","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:04.1673276Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"4676bc19-5131-4ef8-b972-93e42248a50c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/4676bc19-5131-4ef8-b972-93e42248a50c/ticks/636910486817923115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","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":"2019-04-16T21:58:01.7923115Z","submissionTimestamp":"2019-04-16T21:58:24.1026804Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"9040dd4a-370b-4e95-a8c6-eeced6d8be70","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/9040dd4a-370b-4e95-a8c6-eeced6d8be70/ticks/636910486805109177","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:13.986626Z","submissionTimestamp":"2019-04-30T01:41:34.0652039Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"ba9964f6-7747-4af6-90d3-4e419ee28898","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/ba9964f6-7747-4af6-90d3-4e419ee28898/ticks/636921852627155870","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"ac988b10-a645-48fb-9dc4-db831a8ca267"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:41:02.715587Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc/ticks/636921852625050665","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:02.5050665Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"d456b2de-7add-4af7-bac8-fff2f0a74b0c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/d456b2de-7add-4af7-bac8-fff2f0a74b0c/ticks/636921852603908902","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.3908902Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"e0c86835-3f75-42ab-8c35-c6c260fc2b58","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/e0c86835-3f75-42ab-8c35-c6c260fc2b58/ticks/636921852602144007","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"86d66eae-f4ea-484e-881b-dcf54e5c3a67","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.2144007Z","submissionTimestamp":"2019-04-30T01:41:29.0742854Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"1fefb16f-2bb4-44c6-b35c-b48685a8f15a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/1fefb16f-2bb4-44c6-b35c-b48685a8f15a/ticks/636921852594981588","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"55fc2510-a9c3-4400-83f9-e913c295cdc6","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f95936ba-333b-483d-aa93-4bc46ce8cf14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-30T01:40:59.4981588Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b401e26e-b8ec-4915-8b1f-e9f72c68a9d7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/b401e26e-b8ec-4915-8b1f-e9f72c68a9d7/ticks/636921852579358244","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:57.9358244Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"f600f875-7dd5-4bbc-a281-9c514549452a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/f600f875-7dd5-4bbc-a281-9c514549452a/ticks/636921852548656881","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"fb7492ae-e261-4c32-b442-b10a06cf3655","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"0dcf845c-7ac5-4fa9-bfbe-0c6d6457ba7a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a04b52a7-377f-4bb2-a896-9a3d2e428852\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:54.8656881Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"8dd53f2c-09af-490c-812e-96f2475739ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/8dd53f2c-09af-490c-812e-96f2475739ef/ticks/636921852546464533","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:54.6464533Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"02a185f3-e23d-4992-9fc2-bd81ba188889","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/02a185f3-e23d-4992-9fc2-bd81ba188889/ticks/636921852522517479","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","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":"2019-04-30T01:40:52.2517479Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"5cc719d9-b83e-4b7f-ba5d-a042a748e591","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/5cc719d9-b83e-4b7f-ba5d-a042a748e591/ticks/636921852508598823","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:00.5109177Z","submissionTimestamp":"2019-04-16T21:58:26.0778005Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"f06ba6bb-262d-4c98-9a70-9636e0eae7b4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/f06ba6bb-262d-4c98-9a70-9636e0eae7b4/ticks/636910486774159189","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:57:57.4159189Z","submissionTimestamp":"2019-04-16T21:58:16.0784788Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:50.8598823Z","submissionTimestamp":"2019-04-30T01:41:10.087769Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"68b32732-c9e3-466a-b4fb-bc60589baf96","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/68b32732-c9e3-466a-b4fb-bc60589baf96/ticks/636921852477748804","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:47.7748804Z","submissionTimestamp":"2019-04-30T01:41:00.1161454Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '48905' + - '48926' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:59:20 GMT + - Tue, 30 Apr 2019 01:42:11 GMT expires: - '-1' pragma: @@ -14116,10 +14804,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461550064012281?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450184359677086?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -14131,7 +14819,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:59:30 GMT + - Tue, 30 Apr 2019 01:42:21 GMT expires: - '-1' pragma: @@ -14161,65 +14849,65 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A59%3A29Z%20and%20correlationId%20eq%20%275e2ed171-ed39-4a3f-bcab-cc10937b1118%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A42%3A22Z%20and%20correlationId%20eq%20%27e5e994aa-c51a-4c2c-9039-b1691f432147%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c3ccad08-b7c8-4e92-98a5-1b5b23a910dc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/c3ccad08-b7c8-4e92-98a5-1b5b23a910dc/ticks/636910487043025336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c725566a-89c2-4170-acf5-0625dcd8f4fd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"cf3ac514-718c-4748-a77b-c9d0a39ac1e5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/cf3ac514-718c-4748-a77b-c9d0a39ac1e5/ticks/636921852739866260","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5c89c82c-d4f3-4aa2-92e9-d641a925668f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:24.3025336Z","submissionTimestamp":"2019-04-16T21:58:40.1003926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"65f22ff0-3643-40c9-98b1-387088e7ca5e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/65f22ff0-3643-40c9-98b1-387088e7ca5e/ticks/636910486925627913","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"f1e041b1-6bc8-4102-9b6f-506e01eb2947"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:12.5627913Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"2e908ed1-cd6b-4bf6-bc82-357f38987402","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/2e908ed1-cd6b-4bf6-bc82-357f38987402/ticks/636910486923329526","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:12.3329526Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"eff3cb0a-c1b5-4827-bb73-9fc918089b99","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/eff3cb0a-c1b5-4827-bb73-9fc918089b99/ticks/636910486902281916","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"101b468c-574f-475c-8688-25448c0e9893","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.2281916Z","submissionTimestamp":"2019-04-16T21:58:35.0913559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"6cf7d896-c929-43af-8096-c29c5ac42df8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/6cf7d896-c929-43af-8096-c29c5ac42df8/ticks/636910486901223058","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.1223058Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"956987ee-d8b2-4263-8e6b-b73a78fb4944","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/956987ee-d8b2-4263-8e6b-b73a78fb4944/ticks/636910486892787076","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"c6b44507-fafe-487b-bf97-10082fa655ef","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"406d590f-18ec-4a66-b05b-7073d6069724\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-16T21:58:09.2787076Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"a1106fba-ff07-4add-94ca-13f5e2b65f62","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/a1106fba-ff07-4add-94ca-13f5e2b65f62/ticks/636910486876428485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:07.6428485Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"73a08f71-79fd-4c4c-8659-8f2bab662f02","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/73a08f71-79fd-4c4c-8659-8f2bab662f02/ticks/636910486843872944","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ec63a4d2-3ad0-4fea-b955-48216413d580","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"12a9eb25-f5b5-45c8-bcb0-82b296d7b51f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"90642693-ceb7-4f4a-88d0-44862003d8e4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:04.3872944Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c25be059-0013-443b-a354-1fd26662f4d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/c25be059-0013-443b-a354-1fd26662f4d9/ticks/636910486841673276","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:04.1673276Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"4676bc19-5131-4ef8-b972-93e42248a50c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/4676bc19-5131-4ef8-b972-93e42248a50c/ticks/636910486817923115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","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":"2019-04-16T21:58:01.7923115Z","submissionTimestamp":"2019-04-16T21:58:24.1026804Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"9040dd4a-370b-4e95-a8c6-eeced6d8be70","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/9040dd4a-370b-4e95-a8c6-eeced6d8be70/ticks/636910486805109177","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:13.986626Z","submissionTimestamp":"2019-04-30T01:41:34.0652039Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"ba9964f6-7747-4af6-90d3-4e419ee28898","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/ba9964f6-7747-4af6-90d3-4e419ee28898/ticks/636921852627155870","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"ac988b10-a645-48fb-9dc4-db831a8ca267"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:41:02.715587Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc/ticks/636921852625050665","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:02.5050665Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"d456b2de-7add-4af7-bac8-fff2f0a74b0c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/d456b2de-7add-4af7-bac8-fff2f0a74b0c/ticks/636921852603908902","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.3908902Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"e0c86835-3f75-42ab-8c35-c6c260fc2b58","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/e0c86835-3f75-42ab-8c35-c6c260fc2b58/ticks/636921852602144007","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"86d66eae-f4ea-484e-881b-dcf54e5c3a67","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.2144007Z","submissionTimestamp":"2019-04-30T01:41:29.0742854Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"1fefb16f-2bb4-44c6-b35c-b48685a8f15a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/1fefb16f-2bb4-44c6-b35c-b48685a8f15a/ticks/636921852594981588","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"55fc2510-a9c3-4400-83f9-e913c295cdc6","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f95936ba-333b-483d-aa93-4bc46ce8cf14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-30T01:40:59.4981588Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b401e26e-b8ec-4915-8b1f-e9f72c68a9d7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/b401e26e-b8ec-4915-8b1f-e9f72c68a9d7/ticks/636921852579358244","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:57.9358244Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"f600f875-7dd5-4bbc-a281-9c514549452a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/f600f875-7dd5-4bbc-a281-9c514549452a/ticks/636921852548656881","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"fb7492ae-e261-4c32-b442-b10a06cf3655","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"0dcf845c-7ac5-4fa9-bfbe-0c6d6457ba7a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a04b52a7-377f-4bb2-a896-9a3d2e428852\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:54.8656881Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"8dd53f2c-09af-490c-812e-96f2475739ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/8dd53f2c-09af-490c-812e-96f2475739ef/ticks/636921852546464533","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:54.6464533Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"02a185f3-e23d-4992-9fc2-bd81ba188889","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/02a185f3-e23d-4992-9fc2-bd81ba188889/ticks/636921852522517479","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","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":"2019-04-30T01:40:52.2517479Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"5cc719d9-b83e-4b7f-ba5d-a042a748e591","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/5cc719d9-b83e-4b7f-ba5d-a042a748e591/ticks/636921852508598823","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:00.5109177Z","submissionTimestamp":"2019-04-16T21:58:26.0778005Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"f06ba6bb-262d-4c98-9a70-9636e0eae7b4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/f06ba6bb-262d-4c98-9a70-9636e0eae7b4/ticks/636910486774159189","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:57:57.4159189Z","submissionTimestamp":"2019-04-16T21:58:16.0784788Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:50.8598823Z","submissionTimestamp":"2019-04-30T01:41:10.087769Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"68b32732-c9e3-466a-b4fb-bc60589baf96","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/68b32732-c9e3-466a-b4fb-bc60589baf96/ticks/636921852477748804","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:47.7748804Z","submissionTimestamp":"2019-04-30T01:41:00.1161454Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '48905' + - '48926' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:59:31 GMT + - Tue, 30 Apr 2019 01:42:22 GMT expires: - '-1' pragma: @@ -14253,69 +14941,65 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A59%3A40Z%20and%20correlationId%20eq%20%275e2ed171-ed39-4a3f-bcab-cc10937b1118%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A42%3A32Z%20and%20correlationId%20eq%20%27e5e994aa-c51a-4c2c-9039-b1691f432147%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"f61a5e4d-baf5-41d4-b67c-37d070691e30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/f61a5e4d-baf5-41d4-b67c-37d070691e30/ticks/636910487670131448","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"367212ab-f853-4e5f-a5ff-2eade9423712","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:59:27.0131448Z","submissionTimestamp":"2019-04-16T21:59:41.0766289Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c3ccad08-b7c8-4e92-98a5-1b5b23a910dc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/c3ccad08-b7c8-4e92-98a5-1b5b23a910dc/ticks/636910487043025336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c725566a-89c2-4170-acf5-0625dcd8f4fd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"cf3ac514-718c-4748-a77b-c9d0a39ac1e5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/cf3ac514-718c-4748-a77b-c9d0a39ac1e5/ticks/636921852739866260","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5c89c82c-d4f3-4aa2-92e9-d641a925668f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:24.3025336Z","submissionTimestamp":"2019-04-16T21:58:40.1003926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"65f22ff0-3643-40c9-98b1-387088e7ca5e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/65f22ff0-3643-40c9-98b1-387088e7ca5e/ticks/636910486925627913","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"f1e041b1-6bc8-4102-9b6f-506e01eb2947"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:12.5627913Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"2e908ed1-cd6b-4bf6-bc82-357f38987402","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/2e908ed1-cd6b-4bf6-bc82-357f38987402/ticks/636910486923329526","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:12.3329526Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"eff3cb0a-c1b5-4827-bb73-9fc918089b99","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/eff3cb0a-c1b5-4827-bb73-9fc918089b99/ticks/636910486902281916","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"101b468c-574f-475c-8688-25448c0e9893","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.2281916Z","submissionTimestamp":"2019-04-16T21:58:35.0913559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"6cf7d896-c929-43af-8096-c29c5ac42df8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/6cf7d896-c929-43af-8096-c29c5ac42df8/ticks/636910486901223058","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.1223058Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"956987ee-d8b2-4263-8e6b-b73a78fb4944","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/956987ee-d8b2-4263-8e6b-b73a78fb4944/ticks/636910486892787076","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"c6b44507-fafe-487b-bf97-10082fa655ef","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"406d590f-18ec-4a66-b05b-7073d6069724\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-16T21:58:09.2787076Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"a1106fba-ff07-4add-94ca-13f5e2b65f62","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/a1106fba-ff07-4add-94ca-13f5e2b65f62/ticks/636910486876428485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:07.6428485Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"73a08f71-79fd-4c4c-8659-8f2bab662f02","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/73a08f71-79fd-4c4c-8659-8f2bab662f02/ticks/636910486843872944","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ec63a4d2-3ad0-4fea-b955-48216413d580","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"12a9eb25-f5b5-45c8-bcb0-82b296d7b51f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"90642693-ceb7-4f4a-88d0-44862003d8e4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:04.3872944Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c25be059-0013-443b-a354-1fd26662f4d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/c25be059-0013-443b-a354-1fd26662f4d9/ticks/636910486841673276","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:04.1673276Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"4676bc19-5131-4ef8-b972-93e42248a50c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/4676bc19-5131-4ef8-b972-93e42248a50c/ticks/636910486817923115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","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":"2019-04-16T21:58:01.7923115Z","submissionTimestamp":"2019-04-16T21:58:24.1026804Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"9040dd4a-370b-4e95-a8c6-eeced6d8be70","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/9040dd4a-370b-4e95-a8c6-eeced6d8be70/ticks/636910486805109177","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:13.986626Z","submissionTimestamp":"2019-04-30T01:41:34.0652039Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"ba9964f6-7747-4af6-90d3-4e419ee28898","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/ba9964f6-7747-4af6-90d3-4e419ee28898/ticks/636921852627155870","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"ac988b10-a645-48fb-9dc4-db831a8ca267"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:41:02.715587Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc/ticks/636921852625050665","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:02.5050665Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"d456b2de-7add-4af7-bac8-fff2f0a74b0c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/d456b2de-7add-4af7-bac8-fff2f0a74b0c/ticks/636921852603908902","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.3908902Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"e0c86835-3f75-42ab-8c35-c6c260fc2b58","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/e0c86835-3f75-42ab-8c35-c6c260fc2b58/ticks/636921852602144007","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"86d66eae-f4ea-484e-881b-dcf54e5c3a67","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.2144007Z","submissionTimestamp":"2019-04-30T01:41:29.0742854Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"1fefb16f-2bb4-44c6-b35c-b48685a8f15a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/1fefb16f-2bb4-44c6-b35c-b48685a8f15a/ticks/636921852594981588","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"55fc2510-a9c3-4400-83f9-e913c295cdc6","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f95936ba-333b-483d-aa93-4bc46ce8cf14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-30T01:40:59.4981588Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b401e26e-b8ec-4915-8b1f-e9f72c68a9d7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/b401e26e-b8ec-4915-8b1f-e9f72c68a9d7/ticks/636921852579358244","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:57.9358244Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"f600f875-7dd5-4bbc-a281-9c514549452a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/f600f875-7dd5-4bbc-a281-9c514549452a/ticks/636921852548656881","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"fb7492ae-e261-4c32-b442-b10a06cf3655","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"0dcf845c-7ac5-4fa9-bfbe-0c6d6457ba7a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a04b52a7-377f-4bb2-a896-9a3d2e428852\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:54.8656881Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"8dd53f2c-09af-490c-812e-96f2475739ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/8dd53f2c-09af-490c-812e-96f2475739ef/ticks/636921852546464533","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:54.6464533Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"02a185f3-e23d-4992-9fc2-bd81ba188889","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/02a185f3-e23d-4992-9fc2-bd81ba188889/ticks/636921852522517479","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","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":"2019-04-30T01:40:52.2517479Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"5cc719d9-b83e-4b7f-ba5d-a042a748e591","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/5cc719d9-b83e-4b7f-ba5d-a042a748e591/ticks/636921852508598823","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:00.5109177Z","submissionTimestamp":"2019-04-16T21:58:26.0778005Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"f06ba6bb-262d-4c98-9a70-9636e0eae7b4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/f06ba6bb-262d-4c98-9a70-9636e0eae7b4/ticks/636910486774159189","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:57:57.4159189Z","submissionTimestamp":"2019-04-16T21:58:16.0784788Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:50.8598823Z","submissionTimestamp":"2019-04-30T01:41:10.087769Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"68b32732-c9e3-466a-b4fb-bc60589baf96","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/68b32732-c9e3-466a-b4fb-bc60589baf96/ticks/636921852477748804","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:47.7748804Z","submissionTimestamp":"2019-04-30T01:41:00.1161454Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '52554' + - '48926' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:59:41 GMT + - Tue, 30 Apr 2019 01:42:32 GMT expires: - '-1' pragma: @@ -14349,69 +15033,69 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A59%3A50Z%20and%20correlationId%20eq%20%275e2ed171-ed39-4a3f-bcab-cc10937b1118%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A42%3A42Z%20and%20correlationId%20eq%20%27e5e994aa-c51a-4c2c-9039-b1691f432147%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"f61a5e4d-baf5-41d4-b67c-37d070691e30","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/f61a5e4d-baf5-41d4-b67c-37d070691e30/ticks/636910487670131448","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"367212ab-f853-4e5f-a5ff-2eade9423712","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"29ec92ef-8a43-4c7d-83fb-5ff352d08b02","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/29ec92ef-8a43-4c7d-83fb-5ff352d08b02/ticks/636921853371306480","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"9fcb4b58-a104-4b0e-b668-e0ed18913c95","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:59:27.0131448Z","submissionTimestamp":"2019-04-16T21:59:41.0766289Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c3ccad08-b7c8-4e92-98a5-1b5b23a910dc","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/c3ccad08-b7c8-4e92-98a5-1b5b23a910dc/ticks/636910487043025336","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"c725566a-89c2-4170-acf5-0625dcd8f4fd","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:42:17.130648Z","submissionTimestamp":"2019-04-30T01:42:38.0656071Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"cf3ac514-718c-4748-a77b-c9d0a39ac1e5","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/cf3ac514-718c-4748-a77b-c9d0a39ac1e5/ticks/636921852739866260","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"5c89c82c-d4f3-4aa2-92e9-d641a925668f","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:24.3025336Z","submissionTimestamp":"2019-04-16T21:58:40.1003926Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"65f22ff0-3643-40c9-98b1-387088e7ca5e","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/65f22ff0-3643-40c9-98b1-387088e7ca5e/ticks/636910486925627913","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"f1e041b1-6bc8-4102-9b6f-506e01eb2947"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:12.5627913Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"2e908ed1-cd6b-4bf6-bc82-357f38987402","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/2e908ed1-cd6b-4bf6-bc82-357f38987402/ticks/636910486923329526","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:12.3329526Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"eff3cb0a-c1b5-4827-bb73-9fc918089b99","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/eff3cb0a-c1b5-4827-bb73-9fc918089b99/ticks/636910486902281916","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"101b468c-574f-475c-8688-25448c0e9893","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.2281916Z","submissionTimestamp":"2019-04-16T21:58:35.0913559Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"6cf7d896-c929-43af-8096-c29c5ac42df8","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b4311179-eb8b-40f1-b0a5-bb13e784524b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/6cf7d896-c929-43af-8096-c29c5ac42df8/ticks/636910486901223058","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"e9e11aa7-97f1-43f0-9ed9-73ccc679eaf0","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create - or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:10.1223058Z","submissionTimestamp":"2019-04-16T21:58:34.0767267Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"956987ee-d8b2-4263-8e6b-b73a78fb4944","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/956987ee-d8b2-4263-8e6b-b73a78fb4944/ticks/636910486892787076","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"c6b44507-fafe-487b-bf97-10082fa655ef","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"406d590f-18ec-4a66-b05b-7073d6069724\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"daa66c08-addb-415f-8d22-02c9e9168693\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-16T21:58:09.2787076Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"a1106fba-ff07-4add-94ca-13f5e2b65f62","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0b99d64-4825-4f2a-828b-0e5df0bd334b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/a1106fba-ff07-4add-94ca-13f5e2b65f62/ticks/636910486876428485","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"daf4d6f3-c110-43c1-a36b-3c5664c39d8e","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create - or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:07.6428485Z","submissionTimestamp":"2019-04-16T21:58:24.1046819Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"73a08f71-79fd-4c4c-8659-8f2bab662f02","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/73a08f71-79fd-4c4c-8659-8f2bab662f02/ticks/636910486843872944","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"ec63a4d2-3ad0-4fea-b955-48216413d580","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"12a9eb25-f5b5-45c8-bcb0-82b296d7b51f\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"90642693-ceb7-4f4a-88d0-44862003d8e4\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:04.3872944Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"c25be059-0013-443b-a354-1fd26662f4d9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/c25be059-0013-443b-a354-1fd26662f4d9/ticks/636910486841673276","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:58:04.1673276Z","submissionTimestamp":"2019-04-16T21:58:24.1036811Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"4676bc19-5131-4ef8-b972-93e42248a50c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d0b9d6dc-779c-4b81-abe2-b0645ccdbf6a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/4676bc19-5131-4ef8-b972-93e42248a50c/ticks/636910486817923115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"29a95b84-7c0f-4d43-a9f7-4e5093f53109","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":"2019-04-16T21:58:01.7923115Z","submissionTimestamp":"2019-04-16T21:58:24.1026804Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"9040dd4a-370b-4e95-a8c6-eeced6d8be70","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/9040dd4a-370b-4e95-a8c6-eeced6d8be70/ticks/636910486805109177","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:13.986626Z","submissionTimestamp":"2019-04-30T01:41:34.0652039Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"ba9964f6-7747-4af6-90d3-4e419ee28898","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/ba9964f6-7747-4af6-90d3-4e419ee28898/ticks/636921852627155870","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"properties":{"statusCode":"Created","serviceRequestId":"ac988b10-a645-48fb-9dc4-db831a8ca267"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:41:02.715587Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/b9e3a5a6-63c2-4c50-8cc4-ff90dc8f8acc/ticks/636921852625050665","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:02.5050665Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachineScaleSets/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"d456b2de-7add-4af7-bac8-fff2f0a74b0c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"bce3da17-58db-4434-be7c-407b5bf9efd9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2/events/d456b2de-7add-4af7-bac8-fff2f0a74b0c/ticks/636921852603908902","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":{"value":"Microsoft.Compute/virtualMachineScaleSets","localizedValue":"Microsoft.Compute/virtualMachineScaleSets"},"operationId":"0b2a91f0-6964-457f-9a10-9589939ef0b8","operationName":{"value":"Microsoft.Compute/virtualMachineScaleSets/write","localizedValue":"Create + or Update Virtual Machine Scale Set"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.3908902Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"e0c86835-3f75-42ab-8c35-c6c260fc2b58","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/e0c86835-3f75-42ab-8c35-c6c260fc2b58/ticks/636921852602144007","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"86d66eae-f4ea-484e-881b-dcf54e5c3a67","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:41:00.2144007Z","submissionTimestamp":"2019-04-30T01:41:29.0742854Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"1fefb16f-2bb4-44c6-b35c-b48685a8f15a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/1fefb16f-2bb4-44c6-b35c-b48685a8f15a/ticks/636921852594981588","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"statusCode":"Created","serviceRequestId":"55fc2510-a9c3-4400-83f9-e913c295cdc6","responseBody":"{\"name\":\"vmss2LB\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f95936ba-333b-483d-aa93-4bc46ce8cf14\",\"frontendIPConfigurations\":[{\"name\":\"loadBalancerFrontEnd\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/frontendIPConfigurations/loadBalancerFrontEnd\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"},\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\"}]}}],\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/backendAddressPools\"}],\"loadBalancingRules\":[],\"probes\":[],\"inboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool\",\"etag\":\"W/\\\"438fdc2a-1643-450b-b27c-b27b6e5bda80\\\"\",\"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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/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":"2019-04-30T01:40:59.4981588Z","submissionTimestamp":"2019-04-30T01:41:29.0849774Z","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_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"b401e26e-b8ec-4915-8b1f-e9f72c68a9d7","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d113cea4-96b3-4244-8d74-39ade86e24ed","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/events/b401e26e-b8ec-4915-8b1f-e9f72c68a9d7/ticks/636921852579358244","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"operationId":"e89cd05c-3e1e-4a79-bf1e-d617ee73a8fa","operationName":{"value":"Microsoft.Network/loadBalancers/write","localizedValue":"Create + or Update Load Balancer"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"backendAddressPools\":[{\"name\":\"vmss2LBBEPool\"}],\"inboundNatPools\":[{\"name\":\"vmss2LBNatPool\",\"properties\":{\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\"}}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:57.9358244Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"f600f875-7dd5-4bbc-a281-9c514549452a","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/f600f875-7dd5-4bbc-a281-9c514549452a/ticks/636921852548656881","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"fb7492ae-e261-4c32-b442-b10a06cf3655","responseBody":"{\"name\":\"vmss2LBPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP\",\"etag\":\"W/\\\"0dcf845c-7ac5-4fa9-bfbe-0c6d6457ba7a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"a04b52a7-377f-4bb2-a896-9a3d2e428852\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:54.8656881Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"8dd53f2c-09af-490c-812e-96f2475739ef","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/8dd53f2c-09af-490c-812e-96f2475739ef/ticks/636921852546464533","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:54.6464533Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"02a185f3-e23d-4992-9fc2-bd81ba188889","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"3a25d954-d4f0-455f-8d31-e864b711beeb","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP/events/02a185f3-e23d-4992-9fc2-bd81ba188889/ticks/636921852522517479","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b6e1a9e1-f0ac-45f5-8b2f-d63419238b9d","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":"2019-04-30T01:40:52.2517479Z","submissionTimestamp":"2019-04-30T01:41:19.0824699Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"5cc719d9-b83e-4b7f-ba5d-a042a748e591","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/5cc719d9-b83e-4b7f-ba5d-a042a748e591/ticks/636921852508598823","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:58:00.5109177Z","submissionTimestamp":"2019-04-16T21:58:26.0778005Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","description":"","eventDataId":"f06ba6bb-262d-4c98-9a70-9636e0eae7b4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"adfc1b66-6092-11e9-8f6b-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z/events/f06ba6bb-262d-4c98-9a70-9636e0eae7b4/ticks/636910486774159189","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:57:57.4159189Z","submissionTimestamp":"2019-04-16T21:58:16.0784788Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:40:50.8598823Z","submissionTimestamp":"2019-04-30T01:41:10.087769Z","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_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhF2UnvIJrd5BKNZXfS1osObRKq4JEUtfweUdjABssI9PPl0DRKsxrkEQNbsCvQK9kdvFf00Kq7Mo9IoPnxkBTRL+ipb/u5k5eIt9L/APuPE=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"-Np39eWn2k6rCpHxAdkBAA","ver":"1.0"},"correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","description":"","eventDataId":"68b32732-c9e3-466a-b4fb-bc60589baf96","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"f9236fda-6ae8-11e9-bf21-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL/events/68b32732-c9e3-466a-b4fb-bc60589baf96/ticks/636921852477748804","level":"Informational","resourceGroupName":"cli_test_vm_custom_image000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:40:47.7748804Z","submissionTimestamp":"2019-04-30T01:41:00.1161454Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '52554' + - '52576' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:59:52 GMT + - Tue, 30 Apr 2019 01:42:42 GMT expires: - '-1' pragma: @@ -14443,10 +15127,10 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461550064012281?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450184359677086?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -14458,7 +15142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 22:00:00 GMT + - Tue, 30 Apr 2019 01:42:51 GMT expires: - '-1' pragma: @@ -14486,13 +15170,13 @@ interactions: ParameterSetName: - -g -n --image --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image000001/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_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","name":"vmss_deploy_GDtmpJtggYcZ2z2iW4MsP4ruKittys1Z","properties":{"templateHash":"14287067586527894212","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:59:53.4840299Z","duration":"PT1M54.4076331S","correlationId":"5e2ed171-ed39-4a3f-bcab-cc10937b1118","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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss2aca9","adminUsername":"sdk-test-admin","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed"},"dataDisks":[{"lun":0,"createOption":"FromImage","caching":"None","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":1},{"lun":1,"createOption":"FromImage","caching":"None","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":1}]},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss2aca9Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss2aca9IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"uniqueId":"1d2370c7-b576-4d67-a648-da1ec7aa9168"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Resources/deployments/vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","name":"vmss_deploy_3uw0O7BQN49H0RUdSLvBxhp9TyDW0aKL","properties":{"templateHash":"18298032574110354388","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:42:42.5246446Z","duration":"PT1M53.0147219S","correlationId":"e5e994aa-c51a-4c2c-9039-b1691f432147","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_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss2LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss2LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss2"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss21675","adminUsername":"sdk-test-admin","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/images/img-from-managed"},"dataDisks":[{"lun":0,"createOption":"FromImage","caching":"None","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":1},{"lun":1,"createOption":"FromImage","caching":"None","managedDisk":{"storageAccountType":"Standard_LRS"},"diskSizeGB":1}]},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss21675Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss21675IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/virtualNetworks/vm-unmanaged-diskVNET/subnets/vm-unmanaged-diskSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/backendAddressPools/vmss2LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB/inboundNatPools/vmss2LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"uniqueId":"3a7fae6d-5c02-448c-8ca3-f6dd5011842f"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/loadBalancers/vmss2LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image000001/providers/Microsoft.Network/publicIPAddresses/vmss2LBPublicIP"}]}}' headers: cache-control: - no-cache @@ -14501,7 +15185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 22:00:01 GMT + - Tue, 30 Apr 2019 01:42:52 GMT expires: - '-1' pragma: @@ -14531,8 +15215,8 @@ interactions: ParameterSetName: - --name --yes --no-wait User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: DELETE @@ -14546,11 +15230,11 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2019 22:00:02 GMT + - Tue, 30 Apr 2019 01:42:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk06NUZDVVNUT006NUZJTUFHRTdQQjI2NFY1WUpBRklYN3xFRjY4QThDNTJDMkZFNUUyLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk06NUZDVVNUT006NUZJTUFHRUNOU1BSNlpXR0dUWE1TWnw1RUY5MzA5QTc1OEM0RjJBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache strict-transport-security: diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_custom_image_name_conflict.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_custom_image_name_conflict.yaml index 2c89f04f66a..e4af6a18449 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_custom_image_name_conflict.yaml +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_custom_image_name_conflict.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-04-16T21:18:42Z"}}' + "date": "2019-04-29T22:57:32Z"}}' headers: Accept: - application/json @@ -18,15 +18,15 @@ interactions: ParameterSetName: - --location --name --tag User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001","name":"cli_test_vm_custom_image_conflict000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:18:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001","name":"cli_test_vm_custom_image_conflict000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:57:32Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -35,7 +35,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:44 GMT + - Mon, 29 Apr 2019 22:57:33 GMT expires: - '-1' pragma: @@ -45,7 +45,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -63,15 +63,15 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001","name":"cli_test_vm_custom_image_conflict000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:18:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001","name":"cli_test_vm_custom_image_conflict000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:57:32Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -80,7 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:44 GMT + - Mon, 29 Apr 2019 22:57:35 GMT expires: - '-1' pragma: @@ -163,13 +163,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:45 GMT + - Mon, 29 Apr 2019 22:57:35 GMT etag: - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' expires: - - Tue, 16 Apr 2019 21:23:45 GMT + - Mon, 29 Apr 2019 23:02:35 GMT source-age: - - '78' + - '274' strict-transport-security: - max-age=31536000 vary: @@ -183,17 +183,17 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 4bd57606c57a3b30026e0801b1eb750ce1fd0a4f + - 485ed7b3d1e82073e63318e2e8cf3f91448d7658 x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - 7F46:63C1:3C51C0:412EF7:5CB64666 + - F0DE:8D23:82E42:951CB:5CC7804C x-served-by: - cache-sea1047-SEA x-timer: - - S1555449526.621936,VS0,VE1 + - S1556578656.622266,VS0,VE8 x-xss-protection: - 1; mode=block status: @@ -213,8 +213,8 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.1.1 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-storage/3.1.1 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -230,7 +230,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:45 GMT + - Mon, 29 Apr 2019 22:57:35 GMT expires: - '-1' pragma: @@ -258,8 +258,8 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -275,7 +275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:46 GMT + - Mon, 29 Apr 2019 22:57:35 GMT expires: - '-1' pragma: @@ -293,7 +293,7 @@ interactions: body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"adminPassword": {"type": "securestring", "metadata": {"description": "Secure adminPassword"}}}, "variables": {}, "resources": - [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage9b675b5c9c8b8f", + [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage428b2ca5163b54", "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], "properties": {"accountType": "Premium_LRS"}}, {"name": "test-vmVNET", "type": "Microsoft.Network/virtualNetworks", "location": "westus", "apiVersion": "2015-06-15", @@ -315,12 +315,12 @@ interactions: "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"}}}, {"apiVersion": "2019-03-01", "type": "Microsoft.Compute/virtualMachines", "name": - "test-vm", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f", + "test-vm", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54", "Microsoft.Network/networkInterfaces/test-vmVMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"}]}, - "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_9b675b5c9c", - "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd"}}, + "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_428b2ca516", + "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd"}}, "imageReference": {"publisher": "credativ", "offer": "Debian", "sku": "9", "version": "latest"}}, "osProfile": {"computerName": "test-vm", "adminUsername": "ubuntu", "adminPassword": "[parameters(\''adminPassword\'')]"}}}], "outputs": {}}, "parameters": @@ -341,26 +341,26 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/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_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","name":"vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","properties":{"templateHash":"15196396466694972637","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:18:49.6992692Z","duration":"PT1.3482817S","correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"test-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"test-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"test-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"test-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage9b675b5c9c8b8f"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"test-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"test-vm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","name":"vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","properties":{"templateHash":"4229429683838017106","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-29T22:57:40.2425638Z","duration":"PT1.4702137S","correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"test-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"test-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"test-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"test-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage428b2ca5163b54"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"test-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"test-vm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/operationStatuses/08586461573571266446?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/operationStatuses/08586450282267053056?api-version=2018-05-01 cache-control: - no-cache content-length: - - '3213' + - '3212' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:49 GMT + - Mon, 29 Apr 2019 22:57:40 GMT expires: - '-1' pragma: @@ -370,7 +370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -390,12 +390,12 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A18%3A55Z%20and%20correlationId%20eq%20%27a7d18c56-d58f-4b05-9edb-0511ebdcb7f4%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T06%3A57%3A46Z%20and%20correlationId%20eq%20%271992f356-0036-4be0-a9da-a23b3dda6b18%27 response: body: string: '{"value":[]}' @@ -407,7 +407,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:18:55 GMT + - Mon, 29 Apr 2019 22:57:46 GMT expires: - '-1' pragma: @@ -441,24 +441,28 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A19%3A05Z%20and%20correlationId%20eq%20%27a7d18c56-d58f-4b05-9edb-0511ebdcb7f4%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T06%3A57%3A57Z%20and%20correlationId%20eq%20%271992f356-0036-4be0-a9da-a23b3dda6b18%27 response: body: - string: '{"value":[]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"326add5b-2094-43dd-b2ab-ce11a591eac3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/326add5b-2094-43dd-b2ab-ce11a591eac3/ticks/636921754566320128","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:36.6320128Z","submissionTimestamp":"2019-04-29T22:57:50.1161464Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '12' + - '3712' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:06 GMT + - Mon, 29 Apr 2019 22:57:56 GMT expires: - '-1' pragma: @@ -492,72 +496,77 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A19%3A15Z%20and%20correlationId%20eq%20%27a7d18c56-d58f-4b05-9edb-0511ebdcb7f4%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T06%3A58%3A07Z%20and%20correlationId%20eq%20%271992f356-0036-4be0-a9da-a23b3dda6b18%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1e9f85b-c529-45d9-babd-e4e28d3de9fa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1e9f85b-c529-45d9-babd-e4e28d3de9fa/ticks/636910463347202292","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0e13d63e-0f06-4877-af5d-c147014c9ae3","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"ca3865d7-b228-4466-8494-6ed53307517a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f53564a2-6063-4fa1-889f-e780da48f610\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.7202292Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"24cd7665-9cd3-4159-a25d-3a2dfbb39012","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/24cd7665-9cd3-4159-a25d-3a2dfbb39012/ticks/636910463346002258","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"13aa0280-9323-4a49-97a2-33138e05381f","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"788a03af-dce9-44cc-93d6-6208fe20e6a0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"b8716d07-336a-483b-ba8f-9e9962b5ee66","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b8716d07-336a-483b-ba8f-9e9962b5ee66/ticks/636921754657907664","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a7bc3e62-0406-44de-97c7-3596dfa6a49a","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"81acefef-403d-4b1e-bc65-a1580977d486\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b1f844d8-489c-4914-a5c7-e110f2163ccc\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7907664Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a96bd539-dc99-4b0c-a758-f71b169f8af7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/a96bd539-dc99-4b0c-a758-f71b169f8af7/ticks/636921754657157635","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11861de9-9c5c-4976-a9ec-e2bfd44aba97","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d56f3454-dcfc-4a3e-bdf7-d0930c301837\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7157635Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"8da706e6-acf6-459e-a7b9-80ac6db19d78","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/8da706e6-acf6-459e-a7b9-80ac6db19d78/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a4c45562-b9ae-4dcb-8a5e-1f5f0718e412","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8e02b6b2-574f-46d0-9ba9-bad2186aa370\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.6002258Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87/ticks/636910463345152129","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.5152129Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c8597efa-92e0-4852-8ccb-6ee2b32a5003","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/c8597efa-92e0-4852-8ccb-6ee2b32a5003/ticks/636910463343851909","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"aa0fe133-a58c-42fe-8f69-919a809ea786","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"16a12234-df3d-4099-8d83-053996e86a85\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.3851909Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0a725736-1779-496a-8c73-a6a2bafd6e0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0a725736-1779-496a-8c73-a6a2bafd6e0b/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"ce10eb14-ca6c-45dc-a301-af14bb1136ca","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a1027401-7e3c-4eef-b005-6b3f89afa531","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/a1027401-7e3c-4eef-b005-6b3f89afa531/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"51e16c36-7534-457e-a543-e5eecc180c72","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/51e16c36-7534-457e-a543-e5eecc180c72/ticks/636921754655007661","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5007661Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"1220f380-11ef-4a81-aefc-dabfde260220","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/1220f380-11ef-4a81-aefc-dabfde260220/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"f924b7bf-262e-481c-bef7-902bfad85dd8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"01d47e1c-9b2e-4a7a-b6c8-576e0889e2e4"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"cd0ab001-f698-4f9a-aae2-a57528fa576a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/cd0ab001-f698-4f9a-aae2-a57528fa576a/ticks/636910463341752115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.1752115Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b02699c9-660d-4ae9-b622-2489c752a5d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b02699c9-660d-4ae9-b622-2489c752a5d4/ticks/636910463318010122","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.8010122Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"305ad14f-5f8d-4f47-a184-01629b55aab4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/305ad14f-5f8d-4f47-a184-01629b55aab4/ticks/636910463317910135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7910135Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0715bd17-585f-48f1-a68e-28dff09d26af","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0715bd17-585f-48f1-a68e-28dff09d26af/ticks/636910463317210093","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7210093Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"3c6dc5e8-dc20-4903-ae50-1f774057d31c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3c6dc5e8-dc20-4903-ae50-1f774057d31c/ticks/636910463316760402","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6760402Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c03fb374-b775-4bb6-bc9d-abf6ce1e2e74","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/c03fb374-b775-4bb6-bc9d-abf6ce1e2e74/ticks/636910463316160454","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6160454Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5e5b7a8f-7931-402b-adf5-acb495a775e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/5e5b7a8f-7931-402b-adf5-acb495a775e9/ticks/636910463263751810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:46.375181Z","submissionTimestamp":"2019-04-16T21:19:08.132504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a7c731c5-95be-4ce3-905c-de9350a9a777","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/a7c731c5-95be-4ce3-905c-de9350a9a777/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ec50b0e-f87c-47fb-9016-cba4b51ffb3b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"30d3b5e6-9dc3-4fcb-b186-95756fa7ff72","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/30d3b5e6-9dc3-4fcb-b186-95756fa7ff72/ticks/636921754628582583","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8582583Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"7b6a5417-02ec-4c60-a060-15e5c287101f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/7b6a5417-02ec-4c60-a060-15e5c287101f/ticks/636921754628032474","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8032474Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"38b5bc6a-d9f7-4736-80a9-2dfd0c18869f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/38b5bc6a-d9f7-4736-80a9-2dfd0c18869f/ticks/636921754627682453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.7682453Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"e404810b-1e7c-4bbf-8f89-27f0137ce269","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/e404810b-1e7c-4bbf-8f89-27f0137ce269/ticks/636921754626532502","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.6532502Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"3b77681e-3d18-4dbb-8b44-94460de0ae10","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3b77681e-3d18-4dbb-8b44-94460de0ae10/ticks/636921754626282450","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.628245Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"dc3d05fb-6ca4-40b6-bee1-90ced9235dc9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/dc3d05fb-6ca4-40b6-bee1-90ced9235dc9/ticks/636921754604924676","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:40.4924676Z","submissionTimestamp":"2019-04-29T22:58:00.1185801Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"326add5b-2094-43dd-b2ab-ce11a591eac3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/326add5b-2094-43dd-b2ab-ce11a591eac3/ticks/636921754566320128","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:36.6320128Z","submissionTimestamp":"2019-04-29T22:57:50.1161464Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '60018' + - '63957' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:16 GMT + - Mon, 29 Apr 2019 22:58:08 GMT expires: - '-1' pragma: @@ -589,10 +598,10 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461573571266446?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450282267053056?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -604,7 +613,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:19 GMT + - Mon, 29 Apr 2019 22:58:10 GMT expires: - '-1' pragma: @@ -634,87 +643,87 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A19%3A26Z%20and%20correlationId%20eq%20%27a7d18c56-d58f-4b05-9edb-0511ebdcb7f4%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T06%3A58%3A17Z%20and%20correlationId%20eq%20%271992f356-0036-4be0-a9da-a23b3dda6b18%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5b34836b-5a43-444c-b990-d39393c5f827","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a5224f8-529f-4e28-9e10-8179184ca864","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/5b34836b-5a43-444c-b990-d39393c5f827/ticks/636910463415930343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5e16bb90-ce0c-48dc-ade1-35ea4b282d5a","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"5e5f9db5-e1c5-47a4-9e31-eb2e58baf212","responseBody":"{\"name\":\"test-vmVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\",\"etag\":\"W/\\\"6d04e0b4-8e39-4cf1-9ada-fd82fbb0a995\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ba8c2d8f-bb11-43aa-b36c-39ee188d4d69\",\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\",\"etag\":\"W/\\\"6d04e0b4-8e39-4cf1-9ada-fd82fbb0a995\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:19:01.5930343Z","submissionTimestamp":"2019-04-16T21:19:22.1006603Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"e5d3712a-4063-445a-afb2-0096afa6bc81","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a5224f8-529f-4e28-9e10-8179184ca864","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/e5d3712a-4063-445a-afb2-0096afa6bc81/ticks/636910463400480758","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5e16bb90-ce0c-48dc-ade1-35ea4b282d5a","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:00.0480758Z","submissionTimestamp":"2019-04-16T21:19:22.1006603Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"46e04806-3739-4b8c-905f-55db25782e1c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/46e04806-3739-4b8c-905f-55db25782e1c/ticks/636910463398402562","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"82316308-48e3-41c8-9999-2175d00ca2ab","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:59.8402562Z","submissionTimestamp":"2019-04-16T21:19:21.080634Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1e9f85b-c529-45d9-babd-e4e28d3de9fa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1e9f85b-c529-45d9-babd-e4e28d3de9fa/ticks/636910463347202292","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0e13d63e-0f06-4877-af5d-c147014c9ae3","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"ca3865d7-b228-4466-8494-6ed53307517a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f53564a2-6063-4fa1-889f-e780da48f610\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.7202292Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"24cd7665-9cd3-4159-a25d-3a2dfbb39012","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/24cd7665-9cd3-4159-a25d-3a2dfbb39012/ticks/636910463346002258","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"13aa0280-9323-4a49-97a2-33138e05381f","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"788a03af-dce9-44cc-93d6-6208fe20e6a0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"73fe65df-4ce9-411e-b2b8-7b4d49a5a967","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c98ce9d8-af1d-4dae-9caf-c2355f507d28","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/73fe65df-4ce9-411e-b2b8-7b4d49a5a967/ticks/636921754728119266","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"aee13828-64c2-4859-8a64-de335e1d8855","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"062606f9-0836-42c3-adf9-dbb01b229fe9","responseBody":"{\"name\":\"test-vmVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\",\"etag\":\"W/\\\"963a5c48-0762-4253-9ef1-7ca03843f159\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ba3ed508-c57b-49a9-a896-332a58685b0f\",\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\",\"etag\":\"W/\\\"963a5c48-0762-4253-9ef1-7ca03843f159\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:52.8119266Z","submissionTimestamp":"2019-04-29T22:58:14.073168Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ebd2d083-2e1a-4e0d-8561-dac5012b0c0e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/ebd2d083-2e1a-4e0d-8561-dac5012b0c0e/ticks/636921754725820135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e946f406-51e2-4af5-a84c-250029ad281a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:52.5820135Z","submissionTimestamp":"2019-04-29T22:58:16.0683561Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"def91f89-5378-42e1-8e92-5cc5442431a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c98ce9d8-af1d-4dae-9caf-c2355f507d28","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/def91f89-5378-42e1-8e92-5cc5442431a9/ticks/636921754712770685","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"aee13828-64c2-4859-8a64-de335e1d8855","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:51.2770685Z","submissionTimestamp":"2019-04-29T22:58:14.073168Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"b8716d07-336a-483b-ba8f-9e9962b5ee66","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b8716d07-336a-483b-ba8f-9e9962b5ee66/ticks/636921754657907664","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a7bc3e62-0406-44de-97c7-3596dfa6a49a","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"81acefef-403d-4b1e-bc65-a1580977d486\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b1f844d8-489c-4914-a5c7-e110f2163ccc\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7907664Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a96bd539-dc99-4b0c-a758-f71b169f8af7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/a96bd539-dc99-4b0c-a758-f71b169f8af7/ticks/636921754657157635","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11861de9-9c5c-4976-a9ec-e2bfd44aba97","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d56f3454-dcfc-4a3e-bdf7-d0930c301837\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7157635Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"8da706e6-acf6-459e-a7b9-80ac6db19d78","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/8da706e6-acf6-459e-a7b9-80ac6db19d78/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a4c45562-b9ae-4dcb-8a5e-1f5f0718e412","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8e02b6b2-574f-46d0-9ba9-bad2186aa370\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.6002258Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87/ticks/636910463345152129","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.5152129Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c8597efa-92e0-4852-8ccb-6ee2b32a5003","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/c8597efa-92e0-4852-8ccb-6ee2b32a5003/ticks/636910463343851909","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"aa0fe133-a58c-42fe-8f69-919a809ea786","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"16a12234-df3d-4099-8d83-053996e86a85\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.3851909Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0a725736-1779-496a-8c73-a6a2bafd6e0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0a725736-1779-496a-8c73-a6a2bafd6e0b/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"ce10eb14-ca6c-45dc-a301-af14bb1136ca","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a1027401-7e3c-4eef-b005-6b3f89afa531","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/a1027401-7e3c-4eef-b005-6b3f89afa531/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"51e16c36-7534-457e-a543-e5eecc180c72","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/51e16c36-7534-457e-a543-e5eecc180c72/ticks/636921754655007661","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5007661Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"1220f380-11ef-4a81-aefc-dabfde260220","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/1220f380-11ef-4a81-aefc-dabfde260220/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"f924b7bf-262e-481c-bef7-902bfad85dd8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"01d47e1c-9b2e-4a7a-b6c8-576e0889e2e4"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"cd0ab001-f698-4f9a-aae2-a57528fa576a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/cd0ab001-f698-4f9a-aae2-a57528fa576a/ticks/636910463341752115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.1752115Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b02699c9-660d-4ae9-b622-2489c752a5d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b02699c9-660d-4ae9-b622-2489c752a5d4/ticks/636910463318010122","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.8010122Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"305ad14f-5f8d-4f47-a184-01629b55aab4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/305ad14f-5f8d-4f47-a184-01629b55aab4/ticks/636910463317910135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7910135Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0715bd17-585f-48f1-a68e-28dff09d26af","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0715bd17-585f-48f1-a68e-28dff09d26af/ticks/636910463317210093","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7210093Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"3c6dc5e8-dc20-4903-ae50-1f774057d31c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3c6dc5e8-dc20-4903-ae50-1f774057d31c/ticks/636910463316760402","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6760402Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c03fb374-b775-4bb6-bc9d-abf6ce1e2e74","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/c03fb374-b775-4bb6-bc9d-abf6ce1e2e74/ticks/636910463316160454","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6160454Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"a0420fff-a686-4a89-9cfa-d69575108cc7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/a0420fff-a686-4a89-9cfa-d69575108cc7/ticks/636910463302052280","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a7c731c5-95be-4ce3-905c-de9350a9a777","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/a7c731c5-95be-4ce3-905c-de9350a9a777/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ec50b0e-f87c-47fb-9016-cba4b51ffb3b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"30d3b5e6-9dc3-4fcb-b186-95756fa7ff72","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/30d3b5e6-9dc3-4fcb-b186-95756fa7ff72/ticks/636921754628582583","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8582583Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"7b6a5417-02ec-4c60-a060-15e5c287101f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/7b6a5417-02ec-4c60-a060-15e5c287101f/ticks/636921754628032474","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8032474Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"38b5bc6a-d9f7-4736-80a9-2dfd0c18869f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/38b5bc6a-d9f7-4736-80a9-2dfd0c18869f/ticks/636921754627682453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.7682453Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"e404810b-1e7c-4bbf-8f89-27f0137ce269","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/e404810b-1e7c-4bbf-8f89-27f0137ce269/ticks/636921754626532502","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.6532502Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"3b77681e-3d18-4dbb-8b44-94460de0ae10","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3b77681e-3d18-4dbb-8b44-94460de0ae10/ticks/636921754626282450","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.628245Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"dc3d05fb-6ca4-40b6-bee1-90ced9235dc9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/dc3d05fb-6ca4-40b6-bee1-90ced9235dc9/ticks/636921754604924676","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:50.205228Z","submissionTimestamp":"2019-04-16T21:19:18.0944383Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5e5b7a8f-7931-402b-adf5-acb495a775e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/5e5b7a8f-7931-402b-adf5-acb495a775e9/ticks/636910463263751810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:46.375181Z","submissionTimestamp":"2019-04-16T21:19:08.132504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:40.4924676Z","submissionTimestamp":"2019-04-29T22:58:00.1185801Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"326add5b-2094-43dd-b2ab-ce11a591eac3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/326add5b-2094-43dd-b2ab-ce11a591eac3/ticks/636921754566320128","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:36.6320128Z","submissionTimestamp":"2019-04-29T22:57:50.1161464Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '77608' + - '77756' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:27 GMT + - Mon, 29 Apr 2019 22:58:17 GMT expires: - '-1' pragma: @@ -748,96 +757,105 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A19%3A36Z%20and%20correlationId%20eq%20%27a7d18c56-d58f-4b05-9edb-0511ebdcb7f4%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T06%3A58%3A28Z%20and%20correlationId%20eq%20%271992f356-0036-4be0-a9da-a23b3dda6b18%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"45e33fe3-4e69-4ade-8ccc-d8c0fa0e8a86","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/45e33fe3-4e69-4ade-8ccc-d8c0fa0e8a86/ticks/636910463527327948","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"97481e73-2728-49ba-ae27-d3ae56ecae69","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:12.7327948Z","submissionTimestamp":"2019-04-16T21:19:35.072637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5b34836b-5a43-444c-b990-d39393c5f827","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a5224f8-529f-4e28-9e10-8179184ca864","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/5b34836b-5a43-444c-b990-d39393c5f827/ticks/636910463415930343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5e16bb90-ce0c-48dc-ade1-35ea4b282d5a","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"5e5f9db5-e1c5-47a4-9e31-eb2e58baf212","responseBody":"{\"name\":\"test-vmVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\",\"etag\":\"W/\\\"6d04e0b4-8e39-4cf1-9ada-fd82fbb0a995\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ba8c2d8f-bb11-43aa-b36c-39ee188d4d69\",\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\",\"etag\":\"W/\\\"6d04e0b4-8e39-4cf1-9ada-fd82fbb0a995\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:19:01.5930343Z","submissionTimestamp":"2019-04-16T21:19:22.1006603Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"78adfbf5-c505-4541-98ed-06035ef32620","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/78adfbf5-c505-4541-98ed-06035ef32620/ticks/636910463401751661","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"db861eca-3c60-4451-a0e8-8389c6a63d9a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:00.1751661Z","submissionTimestamp":"2019-04-16T21:19:27.1064911Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"e5d3712a-4063-445a-afb2-0096afa6bc81","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a5224f8-529f-4e28-9e10-8179184ca864","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/e5d3712a-4063-445a-afb2-0096afa6bc81/ticks/636910463400480758","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5e16bb90-ce0c-48dc-ade1-35ea4b282d5a","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:00.0480758Z","submissionTimestamp":"2019-04-16T21:19:22.1006603Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"46e04806-3739-4b8c-905f-55db25782e1c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/46e04806-3739-4b8c-905f-55db25782e1c/ticks/636910463398402562","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"82316308-48e3-41c8-9999-2175d00ca2ab","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:59.8402562Z","submissionTimestamp":"2019-04-16T21:19:21.080634Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"83c3520c-223d-4071-8953-dcdbaa4b8074","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/83c3520c-223d-4071-8953-dcdbaa4b8074/ticks/636910463397129807","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e4ee56df-f020-4b8c-99ec-76f2d5a934ef","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:59.7129807Z","submissionTimestamp":"2019-04-16T21:19:29.1436606Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1e9f85b-c529-45d9-babd-e4e28d3de9fa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1e9f85b-c529-45d9-babd-e4e28d3de9fa/ticks/636910463347202292","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0e13d63e-0f06-4877-af5d-c147014c9ae3","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"ca3865d7-b228-4466-8494-6ed53307517a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f53564a2-6063-4fa1-889f-e780da48f610\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.7202292Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"24cd7665-9cd3-4159-a25d-3a2dfbb39012","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/24cd7665-9cd3-4159-a25d-3a2dfbb39012/ticks/636910463346002258","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"13aa0280-9323-4a49-97a2-33138e05381f","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"788a03af-dce9-44cc-93d6-6208fe20e6a0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ae0f42a3-b4f4-494a-bd4e-83b16d90d08d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9658d7e6-0bd0-4ca2-a647-223910ece22b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/ae0f42a3-b4f4-494a-bd4e-83b16d90d08d/ticks/636921754851043015","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"1b1b8221-8cee-4259-9493-cb7088d6056e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:58:05.1043015Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a74ec344-80e7-46d8-ad88-feda5234b0a6","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/a74ec344-80e7-46d8-ad88-feda5234b0a6/ticks/636921754850229687","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:05.0229687Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"46ba201c-795f-48bf-a28c-cd8f9bce861d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9658d7e6-0bd0-4ca2-a647-223910ece22b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/46ba201c-795f-48bf-a28c-cd8f9bce861d/ticks/636921754838621679","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:03.8621679Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ffdf2e4a-4a9e-4b9d-8533-fed4a30e8e2d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/ffdf2e4a-4a9e-4b9d-8533-fed4a30e8e2d/ticks/636921754829061266","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"13069528-21a7-4af4-8f1f-cd7de4b3f45d","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:02.9061266Z","submissionTimestamp":"2019-04-29T22:58:20.1198564Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"73fe65df-4ce9-411e-b2b8-7b4d49a5a967","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c98ce9d8-af1d-4dae-9caf-c2355f507d28","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/73fe65df-4ce9-411e-b2b8-7b4d49a5a967/ticks/636921754728119266","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"aee13828-64c2-4859-8a64-de335e1d8855","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"062606f9-0836-42c3-adf9-dbb01b229fe9","responseBody":"{\"name\":\"test-vmVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\",\"etag\":\"W/\\\"963a5c48-0762-4253-9ef1-7ca03843f159\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ba3ed508-c57b-49a9-a896-332a58685b0f\",\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\",\"etag\":\"W/\\\"963a5c48-0762-4253-9ef1-7ca03843f159\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:52.8119266Z","submissionTimestamp":"2019-04-29T22:58:14.073168Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ebd2d083-2e1a-4e0d-8561-dac5012b0c0e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/ebd2d083-2e1a-4e0d-8561-dac5012b0c0e/ticks/636921754725820135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e946f406-51e2-4af5-a84c-250029ad281a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:52.5820135Z","submissionTimestamp":"2019-04-29T22:58:16.0683561Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"8fa62ed3-6906-443c-91ab-5048c96510f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/8fa62ed3-6906-443c-91ab-5048c96510f3/ticks/636921754725472803","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d78c1a51-c53b-44ed-b5ef-88cf1bf45200","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:52.5472803Z","submissionTimestamp":"2019-04-29T22:58:14.1403873Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"5cc383aa-5169-4e59-be44-4a9d5c2ab478","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/5cc383aa-5169-4e59-be44-4a9d5c2ab478/ticks/636921754718091450","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8ed28d81-4a6e-459a-b6b4-c2de1c9f62f5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:51.809145Z","submissionTimestamp":"2019-04-29T22:58:17.0764556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"def91f89-5378-42e1-8e92-5cc5442431a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c98ce9d8-af1d-4dae-9caf-c2355f507d28","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/def91f89-5378-42e1-8e92-5cc5442431a9/ticks/636921754712770685","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"aee13828-64c2-4859-8a64-de335e1d8855","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:51.2770685Z","submissionTimestamp":"2019-04-29T22:58:14.073168Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"b8716d07-336a-483b-ba8f-9e9962b5ee66","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b8716d07-336a-483b-ba8f-9e9962b5ee66/ticks/636921754657907664","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a7bc3e62-0406-44de-97c7-3596dfa6a49a","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"81acefef-403d-4b1e-bc65-a1580977d486\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b1f844d8-489c-4914-a5c7-e110f2163ccc\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7907664Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a96bd539-dc99-4b0c-a758-f71b169f8af7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/a96bd539-dc99-4b0c-a758-f71b169f8af7/ticks/636921754657157635","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11861de9-9c5c-4976-a9ec-e2bfd44aba97","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d56f3454-dcfc-4a3e-bdf7-d0930c301837\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7157635Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"8da706e6-acf6-459e-a7b9-80ac6db19d78","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/8da706e6-acf6-459e-a7b9-80ac6db19d78/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a4c45562-b9ae-4dcb-8a5e-1f5f0718e412","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8e02b6b2-574f-46d0-9ba9-bad2186aa370\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.6002258Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87/ticks/636910463345152129","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.5152129Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c8597efa-92e0-4852-8ccb-6ee2b32a5003","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/c8597efa-92e0-4852-8ccb-6ee2b32a5003/ticks/636910463343851909","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"aa0fe133-a58c-42fe-8f69-919a809ea786","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"16a12234-df3d-4099-8d83-053996e86a85\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.3851909Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0a725736-1779-496a-8c73-a6a2bafd6e0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0a725736-1779-496a-8c73-a6a2bafd6e0b/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"ce10eb14-ca6c-45dc-a301-af14bb1136ca","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a1027401-7e3c-4eef-b005-6b3f89afa531","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/a1027401-7e3c-4eef-b005-6b3f89afa531/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"51e16c36-7534-457e-a543-e5eecc180c72","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/51e16c36-7534-457e-a543-e5eecc180c72/ticks/636921754655007661","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5007661Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"1220f380-11ef-4a81-aefc-dabfde260220","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/1220f380-11ef-4a81-aefc-dabfde260220/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"f924b7bf-262e-481c-bef7-902bfad85dd8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"01d47e1c-9b2e-4a7a-b6c8-576e0889e2e4"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"cd0ab001-f698-4f9a-aae2-a57528fa576a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/cd0ab001-f698-4f9a-aae2-a57528fa576a/ticks/636910463341752115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.1752115Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b02699c9-660d-4ae9-b622-2489c752a5d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b02699c9-660d-4ae9-b622-2489c752a5d4/ticks/636910463318010122","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.8010122Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"305ad14f-5f8d-4f47-a184-01629b55aab4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/305ad14f-5f8d-4f47-a184-01629b55aab4/ticks/636910463317910135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7910135Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0715bd17-585f-48f1-a68e-28dff09d26af","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0715bd17-585f-48f1-a68e-28dff09d26af/ticks/636910463317210093","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7210093Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"3c6dc5e8-dc20-4903-ae50-1f774057d31c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3c6dc5e8-dc20-4903-ae50-1f774057d31c/ticks/636910463316760402","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6760402Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c03fb374-b775-4bb6-bc9d-abf6ce1e2e74","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/c03fb374-b775-4bb6-bc9d-abf6ce1e2e74/ticks/636910463316160454","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6160454Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"a0420fff-a686-4a89-9cfa-d69575108cc7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/a0420fff-a686-4a89-9cfa-d69575108cc7/ticks/636910463302052280","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a7c731c5-95be-4ce3-905c-de9350a9a777","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/a7c731c5-95be-4ce3-905c-de9350a9a777/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ec50b0e-f87c-47fb-9016-cba4b51ffb3b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"30d3b5e6-9dc3-4fcb-b186-95756fa7ff72","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/30d3b5e6-9dc3-4fcb-b186-95756fa7ff72/ticks/636921754628582583","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8582583Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"7b6a5417-02ec-4c60-a060-15e5c287101f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/7b6a5417-02ec-4c60-a060-15e5c287101f/ticks/636921754628032474","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8032474Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"38b5bc6a-d9f7-4736-80a9-2dfd0c18869f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/38b5bc6a-d9f7-4736-80a9-2dfd0c18869f/ticks/636921754627682453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.7682453Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"e404810b-1e7c-4bbf-8f89-27f0137ce269","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/e404810b-1e7c-4bbf-8f89-27f0137ce269/ticks/636921754626532502","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.6532502Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"3b77681e-3d18-4dbb-8b44-94460de0ae10","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3b77681e-3d18-4dbb-8b44-94460de0ae10/ticks/636921754626282450","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.628245Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"dc3d05fb-6ca4-40b6-bee1-90ced9235dc9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/dc3d05fb-6ca4-40b6-bee1-90ced9235dc9/ticks/636921754604924676","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:50.205228Z","submissionTimestamp":"2019-04-16T21:19:18.0944383Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5e5b7a8f-7931-402b-adf5-acb495a775e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/5e5b7a8f-7931-402b-adf5-acb495a775e9/ticks/636910463263751810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:46.375181Z","submissionTimestamp":"2019-04-16T21:19:08.132504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:40.4924676Z","submissionTimestamp":"2019-04-29T22:58:00.1185801Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"326add5b-2094-43dd-b2ab-ce11a591eac3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/326add5b-2094-43dd-b2ab-ce11a591eac3/ticks/636921754566320128","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:36.6320128Z","submissionTimestamp":"2019-04-29T22:57:50.1161464Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '88213' + - '99264' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:37 GMT + - Mon, 29 Apr 2019 22:58:27 GMT expires: - '-1' pragma: @@ -871,109 +889,109 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A19%3A47Z%20and%20correlationId%20eq%20%27a7d18c56-d58f-4b05-9edb-0511ebdcb7f4%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T06%3A58%3A38Z%20and%20correlationId%20eq%20%271992f356-0036-4be0-a9da-a23b3dda6b18%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"3d2fb2eb-ea20-41a0-8281-3f3993a5298d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/3d2fb2eb-ea20-41a0-8281-3f3993a5298d/ticks/636910463682993438","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"df054f22-6bb0-40bd-8455-b31b952cefec","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"cf471d3c-6468-4484-8e3c-2e224b0986ec","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/cf471d3c-6468-4484-8e3c-2e224b0986ec/ticks/636921754958773796","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e0a6cc13-cf48-431f-b989-9a288c25647a","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:28.2993438Z","submissionTimestamp":"2019-04-16T21:19:48.0724615Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"6ddf696e-79bc-4954-8f79-93a6ad565cd8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76e87580-2e06-4169-9794-9418ee9d1f4e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/6ddf696e-79bc-4954-8f79-93a6ad565cd8/ticks/636910463571827213","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3ca95a09-b78e-4778-8436-6c5fc3a44403","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"7989fe28-e69f-4d89-a157-25e39ea3f184"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:19:17.1827213Z","submissionTimestamp":"2019-04-16T21:19:39.2043597Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"15498b04-ef13-4d43-aa79-f980211733a9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/15498b04-ef13-4d43-aa79-f980211733a9/ticks/636910463569327253","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3ca95a09-b78e-4778-8436-6c5fc3a44403","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:16.9327253Z","submissionTimestamp":"2019-04-16T21:19:39.2043597Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"28632c90-048b-4e93-a1bf-411dd35ec1c6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76e87580-2e06-4169-9794-9418ee9d1f4e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/28632c90-048b-4e93-a1bf-411dd35ec1c6/ticks/636910463545317993","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3ca95a09-b78e-4778-8436-6c5fc3a44403","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:14.5317993Z","submissionTimestamp":"2019-04-16T21:19:39.203359Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"45e33fe3-4e69-4ade-8ccc-d8c0fa0e8a86","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/45e33fe3-4e69-4ade-8ccc-d8c0fa0e8a86/ticks/636910463527327948","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"97481e73-2728-49ba-ae27-d3ae56ecae69","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:12.7327948Z","submissionTimestamp":"2019-04-16T21:19:35.072637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5b34836b-5a43-444c-b990-d39393c5f827","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a5224f8-529f-4e28-9e10-8179184ca864","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/5b34836b-5a43-444c-b990-d39393c5f827/ticks/636910463415930343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5e16bb90-ce0c-48dc-ade1-35ea4b282d5a","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"5e5f9db5-e1c5-47a4-9e31-eb2e58baf212","responseBody":"{\"name\":\"test-vmVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\",\"etag\":\"W/\\\"6d04e0b4-8e39-4cf1-9ada-fd82fbb0a995\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ba8c2d8f-bb11-43aa-b36c-39ee188d4d69\",\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\",\"etag\":\"W/\\\"6d04e0b4-8e39-4cf1-9ada-fd82fbb0a995\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:19:01.5930343Z","submissionTimestamp":"2019-04-16T21:19:22.1006603Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"78adfbf5-c505-4541-98ed-06035ef32620","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/78adfbf5-c505-4541-98ed-06035ef32620/ticks/636910463401751661","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"db861eca-3c60-4451-a0e8-8389c6a63d9a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:00.1751661Z","submissionTimestamp":"2019-04-16T21:19:27.1064911Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"e5d3712a-4063-445a-afb2-0096afa6bc81","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a5224f8-529f-4e28-9e10-8179184ca864","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/e5d3712a-4063-445a-afb2-0096afa6bc81/ticks/636910463400480758","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5e16bb90-ce0c-48dc-ade1-35ea4b282d5a","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:00.0480758Z","submissionTimestamp":"2019-04-16T21:19:22.1006603Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"46e04806-3739-4b8c-905f-55db25782e1c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/46e04806-3739-4b8c-905f-55db25782e1c/ticks/636910463398402562","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"82316308-48e3-41c8-9999-2175d00ca2ab","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:59.8402562Z","submissionTimestamp":"2019-04-16T21:19:21.080634Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"83c3520c-223d-4071-8953-dcdbaa4b8074","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/83c3520c-223d-4071-8953-dcdbaa4b8074/ticks/636910463397129807","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e4ee56df-f020-4b8c-99ec-76f2d5a934ef","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:59.7129807Z","submissionTimestamp":"2019-04-16T21:19:29.1436606Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1e9f85b-c529-45d9-babd-e4e28d3de9fa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1e9f85b-c529-45d9-babd-e4e28d3de9fa/ticks/636910463347202292","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0e13d63e-0f06-4877-af5d-c147014c9ae3","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"ca3865d7-b228-4466-8494-6ed53307517a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f53564a2-6063-4fa1-889f-e780da48f610\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.7202292Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"24cd7665-9cd3-4159-a25d-3a2dfbb39012","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/24cd7665-9cd3-4159-a25d-3a2dfbb39012/ticks/636910463346002258","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"13aa0280-9323-4a49-97a2-33138e05381f","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"788a03af-dce9-44cc-93d6-6208fe20e6a0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:15.8773796Z","submissionTimestamp":"2019-04-29T22:58:33.0754757Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ae0f42a3-b4f4-494a-bd4e-83b16d90d08d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9658d7e6-0bd0-4ca2-a647-223910ece22b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/ae0f42a3-b4f4-494a-bd4e-83b16d90d08d/ticks/636921754851043015","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"1b1b8221-8cee-4259-9493-cb7088d6056e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:58:05.1043015Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a74ec344-80e7-46d8-ad88-feda5234b0a6","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/a74ec344-80e7-46d8-ad88-feda5234b0a6/ticks/636921754850229687","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:05.0229687Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"46ba201c-795f-48bf-a28c-cd8f9bce861d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9658d7e6-0bd0-4ca2-a647-223910ece22b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/46ba201c-795f-48bf-a28c-cd8f9bce861d/ticks/636921754838621679","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:03.8621679Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ffdf2e4a-4a9e-4b9d-8533-fed4a30e8e2d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/ffdf2e4a-4a9e-4b9d-8533-fed4a30e8e2d/ticks/636921754829061266","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"13069528-21a7-4af4-8f1f-cd7de4b3f45d","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:02.9061266Z","submissionTimestamp":"2019-04-29T22:58:20.1198564Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"73fe65df-4ce9-411e-b2b8-7b4d49a5a967","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c98ce9d8-af1d-4dae-9caf-c2355f507d28","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/73fe65df-4ce9-411e-b2b8-7b4d49a5a967/ticks/636921754728119266","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"aee13828-64c2-4859-8a64-de335e1d8855","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"062606f9-0836-42c3-adf9-dbb01b229fe9","responseBody":"{\"name\":\"test-vmVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\",\"etag\":\"W/\\\"963a5c48-0762-4253-9ef1-7ca03843f159\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ba3ed508-c57b-49a9-a896-332a58685b0f\",\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\",\"etag\":\"W/\\\"963a5c48-0762-4253-9ef1-7ca03843f159\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:52.8119266Z","submissionTimestamp":"2019-04-29T22:58:14.073168Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ebd2d083-2e1a-4e0d-8561-dac5012b0c0e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/ebd2d083-2e1a-4e0d-8561-dac5012b0c0e/ticks/636921754725820135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e946f406-51e2-4af5-a84c-250029ad281a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:52.5820135Z","submissionTimestamp":"2019-04-29T22:58:16.0683561Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"8fa62ed3-6906-443c-91ab-5048c96510f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/8fa62ed3-6906-443c-91ab-5048c96510f3/ticks/636921754725472803","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d78c1a51-c53b-44ed-b5ef-88cf1bf45200","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:52.5472803Z","submissionTimestamp":"2019-04-29T22:58:14.1403873Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"5cc383aa-5169-4e59-be44-4a9d5c2ab478","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/5cc383aa-5169-4e59-be44-4a9d5c2ab478/ticks/636921754718091450","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8ed28d81-4a6e-459a-b6b4-c2de1c9f62f5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:51.809145Z","submissionTimestamp":"2019-04-29T22:58:17.0764556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"def91f89-5378-42e1-8e92-5cc5442431a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c98ce9d8-af1d-4dae-9caf-c2355f507d28","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/def91f89-5378-42e1-8e92-5cc5442431a9/ticks/636921754712770685","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"aee13828-64c2-4859-8a64-de335e1d8855","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:51.2770685Z","submissionTimestamp":"2019-04-29T22:58:14.073168Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"b8716d07-336a-483b-ba8f-9e9962b5ee66","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b8716d07-336a-483b-ba8f-9e9962b5ee66/ticks/636921754657907664","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a7bc3e62-0406-44de-97c7-3596dfa6a49a","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"81acefef-403d-4b1e-bc65-a1580977d486\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b1f844d8-489c-4914-a5c7-e110f2163ccc\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7907664Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a96bd539-dc99-4b0c-a758-f71b169f8af7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/a96bd539-dc99-4b0c-a758-f71b169f8af7/ticks/636921754657157635","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11861de9-9c5c-4976-a9ec-e2bfd44aba97","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d56f3454-dcfc-4a3e-bdf7-d0930c301837\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7157635Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"8da706e6-acf6-459e-a7b9-80ac6db19d78","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/8da706e6-acf6-459e-a7b9-80ac6db19d78/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a4c45562-b9ae-4dcb-8a5e-1f5f0718e412","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8e02b6b2-574f-46d0-9ba9-bad2186aa370\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.6002258Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87/ticks/636910463345152129","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.5152129Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c8597efa-92e0-4852-8ccb-6ee2b32a5003","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/c8597efa-92e0-4852-8ccb-6ee2b32a5003/ticks/636910463343851909","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"aa0fe133-a58c-42fe-8f69-919a809ea786","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"16a12234-df3d-4099-8d83-053996e86a85\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.3851909Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0a725736-1779-496a-8c73-a6a2bafd6e0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0a725736-1779-496a-8c73-a6a2bafd6e0b/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"ce10eb14-ca6c-45dc-a301-af14bb1136ca","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a1027401-7e3c-4eef-b005-6b3f89afa531","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/a1027401-7e3c-4eef-b005-6b3f89afa531/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"51e16c36-7534-457e-a543-e5eecc180c72","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/51e16c36-7534-457e-a543-e5eecc180c72/ticks/636921754655007661","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5007661Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"1220f380-11ef-4a81-aefc-dabfde260220","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/1220f380-11ef-4a81-aefc-dabfde260220/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"f924b7bf-262e-481c-bef7-902bfad85dd8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"01d47e1c-9b2e-4a7a-b6c8-576e0889e2e4"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"cd0ab001-f698-4f9a-aae2-a57528fa576a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/cd0ab001-f698-4f9a-aae2-a57528fa576a/ticks/636910463341752115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.1752115Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b02699c9-660d-4ae9-b622-2489c752a5d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b02699c9-660d-4ae9-b622-2489c752a5d4/ticks/636910463318010122","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.8010122Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"305ad14f-5f8d-4f47-a184-01629b55aab4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/305ad14f-5f8d-4f47-a184-01629b55aab4/ticks/636910463317910135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7910135Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0715bd17-585f-48f1-a68e-28dff09d26af","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0715bd17-585f-48f1-a68e-28dff09d26af/ticks/636910463317210093","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7210093Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"3c6dc5e8-dc20-4903-ae50-1f774057d31c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3c6dc5e8-dc20-4903-ae50-1f774057d31c/ticks/636910463316760402","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6760402Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c03fb374-b775-4bb6-bc9d-abf6ce1e2e74","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/c03fb374-b775-4bb6-bc9d-abf6ce1e2e74/ticks/636910463316160454","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6160454Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"a0420fff-a686-4a89-9cfa-d69575108cc7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/a0420fff-a686-4a89-9cfa-d69575108cc7/ticks/636910463302052280","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a7c731c5-95be-4ce3-905c-de9350a9a777","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/a7c731c5-95be-4ce3-905c-de9350a9a777/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ec50b0e-f87c-47fb-9016-cba4b51ffb3b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"30d3b5e6-9dc3-4fcb-b186-95756fa7ff72","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/30d3b5e6-9dc3-4fcb-b186-95756fa7ff72/ticks/636921754628582583","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8582583Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"7b6a5417-02ec-4c60-a060-15e5c287101f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/7b6a5417-02ec-4c60-a060-15e5c287101f/ticks/636921754628032474","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8032474Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"38b5bc6a-d9f7-4736-80a9-2dfd0c18869f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/38b5bc6a-d9f7-4736-80a9-2dfd0c18869f/ticks/636921754627682453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.7682453Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"e404810b-1e7c-4bbf-8f89-27f0137ce269","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/e404810b-1e7c-4bbf-8f89-27f0137ce269/ticks/636921754626532502","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.6532502Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"3b77681e-3d18-4dbb-8b44-94460de0ae10","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3b77681e-3d18-4dbb-8b44-94460de0ae10/ticks/636921754626282450","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.628245Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"dc3d05fb-6ca4-40b6-bee1-90ced9235dc9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/dc3d05fb-6ca4-40b6-bee1-90ced9235dc9/ticks/636921754604924676","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:50.205228Z","submissionTimestamp":"2019-04-16T21:19:18.0944383Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5e5b7a8f-7931-402b-adf5-acb495a775e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/5e5b7a8f-7931-402b-adf5-acb495a775e9/ticks/636910463263751810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:46.375181Z","submissionTimestamp":"2019-04-16T21:19:08.132504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:40.4924676Z","submissionTimestamp":"2019-04-29T22:58:00.1185801Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"326add5b-2094-43dd-b2ab-ce11a591eac3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/326add5b-2094-43dd-b2ab-ce11a591eac3/ticks/636921754566320128","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:36.6320128Z","submissionTimestamp":"2019-04-29T22:57:50.1161464Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '102692' + - '102855' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:48 GMT + - Mon, 29 Apr 2019 22:58:38 GMT expires: - '-1' pragma: @@ -1005,10 +1023,10 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461573571266446?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450282267053056?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1020,7 +1038,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:50 GMT + - Mon, 29 Apr 2019 22:58:40 GMT expires: - '-1' pragma: @@ -1050,109 +1068,109 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A19%3A57Z%20and%20correlationId%20eq%20%27a7d18c56-d58f-4b05-9edb-0511ebdcb7f4%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T06%3A58%3A49Z%20and%20correlationId%20eq%20%271992f356-0036-4be0-a9da-a23b3dda6b18%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"3d2fb2eb-ea20-41a0-8281-3f3993a5298d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/3d2fb2eb-ea20-41a0-8281-3f3993a5298d/ticks/636910463682993438","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"df054f22-6bb0-40bd-8455-b31b952cefec","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"cf471d3c-6468-4484-8e3c-2e224b0986ec","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/cf471d3c-6468-4484-8e3c-2e224b0986ec/ticks/636921754958773796","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e0a6cc13-cf48-431f-b989-9a288c25647a","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:28.2993438Z","submissionTimestamp":"2019-04-16T21:19:48.0724615Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"6ddf696e-79bc-4954-8f79-93a6ad565cd8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76e87580-2e06-4169-9794-9418ee9d1f4e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/6ddf696e-79bc-4954-8f79-93a6ad565cd8/ticks/636910463571827213","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3ca95a09-b78e-4778-8436-6c5fc3a44403","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"7989fe28-e69f-4d89-a157-25e39ea3f184"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:19:17.1827213Z","submissionTimestamp":"2019-04-16T21:19:39.2043597Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"15498b04-ef13-4d43-aa79-f980211733a9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/15498b04-ef13-4d43-aa79-f980211733a9/ticks/636910463569327253","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3ca95a09-b78e-4778-8436-6c5fc3a44403","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:16.9327253Z","submissionTimestamp":"2019-04-16T21:19:39.2043597Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"28632c90-048b-4e93-a1bf-411dd35ec1c6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76e87580-2e06-4169-9794-9418ee9d1f4e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/28632c90-048b-4e93-a1bf-411dd35ec1c6/ticks/636910463545317993","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3ca95a09-b78e-4778-8436-6c5fc3a44403","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:14.5317993Z","submissionTimestamp":"2019-04-16T21:19:39.203359Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"45e33fe3-4e69-4ade-8ccc-d8c0fa0e8a86","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/45e33fe3-4e69-4ade-8ccc-d8c0fa0e8a86/ticks/636910463527327948","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"97481e73-2728-49ba-ae27-d3ae56ecae69","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:12.7327948Z","submissionTimestamp":"2019-04-16T21:19:35.072637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5b34836b-5a43-444c-b990-d39393c5f827","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a5224f8-529f-4e28-9e10-8179184ca864","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/5b34836b-5a43-444c-b990-d39393c5f827/ticks/636910463415930343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5e16bb90-ce0c-48dc-ade1-35ea4b282d5a","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"5e5f9db5-e1c5-47a4-9e31-eb2e58baf212","responseBody":"{\"name\":\"test-vmVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\",\"etag\":\"W/\\\"6d04e0b4-8e39-4cf1-9ada-fd82fbb0a995\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ba8c2d8f-bb11-43aa-b36c-39ee188d4d69\",\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\",\"etag\":\"W/\\\"6d04e0b4-8e39-4cf1-9ada-fd82fbb0a995\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:19:01.5930343Z","submissionTimestamp":"2019-04-16T21:19:22.1006603Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"78adfbf5-c505-4541-98ed-06035ef32620","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/78adfbf5-c505-4541-98ed-06035ef32620/ticks/636910463401751661","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"db861eca-3c60-4451-a0e8-8389c6a63d9a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:00.1751661Z","submissionTimestamp":"2019-04-16T21:19:27.1064911Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"e5d3712a-4063-445a-afb2-0096afa6bc81","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a5224f8-529f-4e28-9e10-8179184ca864","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/e5d3712a-4063-445a-afb2-0096afa6bc81/ticks/636910463400480758","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5e16bb90-ce0c-48dc-ade1-35ea4b282d5a","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:00.0480758Z","submissionTimestamp":"2019-04-16T21:19:22.1006603Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"46e04806-3739-4b8c-905f-55db25782e1c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/46e04806-3739-4b8c-905f-55db25782e1c/ticks/636910463398402562","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"82316308-48e3-41c8-9999-2175d00ca2ab","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:59.8402562Z","submissionTimestamp":"2019-04-16T21:19:21.080634Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"83c3520c-223d-4071-8953-dcdbaa4b8074","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/83c3520c-223d-4071-8953-dcdbaa4b8074/ticks/636910463397129807","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e4ee56df-f020-4b8c-99ec-76f2d5a934ef","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:59.7129807Z","submissionTimestamp":"2019-04-16T21:19:29.1436606Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1e9f85b-c529-45d9-babd-e4e28d3de9fa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1e9f85b-c529-45d9-babd-e4e28d3de9fa/ticks/636910463347202292","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0e13d63e-0f06-4877-af5d-c147014c9ae3","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"ca3865d7-b228-4466-8494-6ed53307517a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f53564a2-6063-4fa1-889f-e780da48f610\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.7202292Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"24cd7665-9cd3-4159-a25d-3a2dfbb39012","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/24cd7665-9cd3-4159-a25d-3a2dfbb39012/ticks/636910463346002258","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"13aa0280-9323-4a49-97a2-33138e05381f","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"788a03af-dce9-44cc-93d6-6208fe20e6a0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:15.8773796Z","submissionTimestamp":"2019-04-29T22:58:33.0754757Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ae0f42a3-b4f4-494a-bd4e-83b16d90d08d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9658d7e6-0bd0-4ca2-a647-223910ece22b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/ae0f42a3-b4f4-494a-bd4e-83b16d90d08d/ticks/636921754851043015","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"1b1b8221-8cee-4259-9493-cb7088d6056e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:58:05.1043015Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a74ec344-80e7-46d8-ad88-feda5234b0a6","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/a74ec344-80e7-46d8-ad88-feda5234b0a6/ticks/636921754850229687","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:05.0229687Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"46ba201c-795f-48bf-a28c-cd8f9bce861d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9658d7e6-0bd0-4ca2-a647-223910ece22b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/46ba201c-795f-48bf-a28c-cd8f9bce861d/ticks/636921754838621679","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:03.8621679Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ffdf2e4a-4a9e-4b9d-8533-fed4a30e8e2d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/ffdf2e4a-4a9e-4b9d-8533-fed4a30e8e2d/ticks/636921754829061266","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"13069528-21a7-4af4-8f1f-cd7de4b3f45d","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:02.9061266Z","submissionTimestamp":"2019-04-29T22:58:20.1198564Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"73fe65df-4ce9-411e-b2b8-7b4d49a5a967","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c98ce9d8-af1d-4dae-9caf-c2355f507d28","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/73fe65df-4ce9-411e-b2b8-7b4d49a5a967/ticks/636921754728119266","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"aee13828-64c2-4859-8a64-de335e1d8855","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"062606f9-0836-42c3-adf9-dbb01b229fe9","responseBody":"{\"name\":\"test-vmVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\",\"etag\":\"W/\\\"963a5c48-0762-4253-9ef1-7ca03843f159\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ba3ed508-c57b-49a9-a896-332a58685b0f\",\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\",\"etag\":\"W/\\\"963a5c48-0762-4253-9ef1-7ca03843f159\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:52.8119266Z","submissionTimestamp":"2019-04-29T22:58:14.073168Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ebd2d083-2e1a-4e0d-8561-dac5012b0c0e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/ebd2d083-2e1a-4e0d-8561-dac5012b0c0e/ticks/636921754725820135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e946f406-51e2-4af5-a84c-250029ad281a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:52.5820135Z","submissionTimestamp":"2019-04-29T22:58:16.0683561Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"8fa62ed3-6906-443c-91ab-5048c96510f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/8fa62ed3-6906-443c-91ab-5048c96510f3/ticks/636921754725472803","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d78c1a51-c53b-44ed-b5ef-88cf1bf45200","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:52.5472803Z","submissionTimestamp":"2019-04-29T22:58:14.1403873Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"5cc383aa-5169-4e59-be44-4a9d5c2ab478","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/5cc383aa-5169-4e59-be44-4a9d5c2ab478/ticks/636921754718091450","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8ed28d81-4a6e-459a-b6b4-c2de1c9f62f5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:51.809145Z","submissionTimestamp":"2019-04-29T22:58:17.0764556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"def91f89-5378-42e1-8e92-5cc5442431a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c98ce9d8-af1d-4dae-9caf-c2355f507d28","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/def91f89-5378-42e1-8e92-5cc5442431a9/ticks/636921754712770685","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"aee13828-64c2-4859-8a64-de335e1d8855","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:51.2770685Z","submissionTimestamp":"2019-04-29T22:58:14.073168Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"b8716d07-336a-483b-ba8f-9e9962b5ee66","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b8716d07-336a-483b-ba8f-9e9962b5ee66/ticks/636921754657907664","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a7bc3e62-0406-44de-97c7-3596dfa6a49a","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"81acefef-403d-4b1e-bc65-a1580977d486\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b1f844d8-489c-4914-a5c7-e110f2163ccc\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7907664Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a96bd539-dc99-4b0c-a758-f71b169f8af7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/a96bd539-dc99-4b0c-a758-f71b169f8af7/ticks/636921754657157635","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11861de9-9c5c-4976-a9ec-e2bfd44aba97","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d56f3454-dcfc-4a3e-bdf7-d0930c301837\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7157635Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"8da706e6-acf6-459e-a7b9-80ac6db19d78","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/8da706e6-acf6-459e-a7b9-80ac6db19d78/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a4c45562-b9ae-4dcb-8a5e-1f5f0718e412","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8e02b6b2-574f-46d0-9ba9-bad2186aa370\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.6002258Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87/ticks/636910463345152129","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.5152129Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c8597efa-92e0-4852-8ccb-6ee2b32a5003","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/c8597efa-92e0-4852-8ccb-6ee2b32a5003/ticks/636910463343851909","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"aa0fe133-a58c-42fe-8f69-919a809ea786","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"16a12234-df3d-4099-8d83-053996e86a85\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.3851909Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0a725736-1779-496a-8c73-a6a2bafd6e0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0a725736-1779-496a-8c73-a6a2bafd6e0b/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"ce10eb14-ca6c-45dc-a301-af14bb1136ca","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a1027401-7e3c-4eef-b005-6b3f89afa531","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/a1027401-7e3c-4eef-b005-6b3f89afa531/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"51e16c36-7534-457e-a543-e5eecc180c72","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/51e16c36-7534-457e-a543-e5eecc180c72/ticks/636921754655007661","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5007661Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"1220f380-11ef-4a81-aefc-dabfde260220","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/1220f380-11ef-4a81-aefc-dabfde260220/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"f924b7bf-262e-481c-bef7-902bfad85dd8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"01d47e1c-9b2e-4a7a-b6c8-576e0889e2e4"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"cd0ab001-f698-4f9a-aae2-a57528fa576a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/cd0ab001-f698-4f9a-aae2-a57528fa576a/ticks/636910463341752115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.1752115Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b02699c9-660d-4ae9-b622-2489c752a5d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b02699c9-660d-4ae9-b622-2489c752a5d4/ticks/636910463318010122","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.8010122Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"305ad14f-5f8d-4f47-a184-01629b55aab4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/305ad14f-5f8d-4f47-a184-01629b55aab4/ticks/636910463317910135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7910135Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0715bd17-585f-48f1-a68e-28dff09d26af","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0715bd17-585f-48f1-a68e-28dff09d26af/ticks/636910463317210093","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7210093Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"3c6dc5e8-dc20-4903-ae50-1f774057d31c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3c6dc5e8-dc20-4903-ae50-1f774057d31c/ticks/636910463316760402","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6760402Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c03fb374-b775-4bb6-bc9d-abf6ce1e2e74","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/c03fb374-b775-4bb6-bc9d-abf6ce1e2e74/ticks/636910463316160454","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6160454Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"a0420fff-a686-4a89-9cfa-d69575108cc7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/a0420fff-a686-4a89-9cfa-d69575108cc7/ticks/636910463302052280","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a7c731c5-95be-4ce3-905c-de9350a9a777","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/a7c731c5-95be-4ce3-905c-de9350a9a777/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ec50b0e-f87c-47fb-9016-cba4b51ffb3b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"30d3b5e6-9dc3-4fcb-b186-95756fa7ff72","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/30d3b5e6-9dc3-4fcb-b186-95756fa7ff72/ticks/636921754628582583","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8582583Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"7b6a5417-02ec-4c60-a060-15e5c287101f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/7b6a5417-02ec-4c60-a060-15e5c287101f/ticks/636921754628032474","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8032474Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"38b5bc6a-d9f7-4736-80a9-2dfd0c18869f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/38b5bc6a-d9f7-4736-80a9-2dfd0c18869f/ticks/636921754627682453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.7682453Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"e404810b-1e7c-4bbf-8f89-27f0137ce269","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/e404810b-1e7c-4bbf-8f89-27f0137ce269/ticks/636921754626532502","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.6532502Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"3b77681e-3d18-4dbb-8b44-94460de0ae10","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3b77681e-3d18-4dbb-8b44-94460de0ae10/ticks/636921754626282450","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.628245Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"dc3d05fb-6ca4-40b6-bee1-90ced9235dc9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/dc3d05fb-6ca4-40b6-bee1-90ced9235dc9/ticks/636921754604924676","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:50.205228Z","submissionTimestamp":"2019-04-16T21:19:18.0944383Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5e5b7a8f-7931-402b-adf5-acb495a775e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/5e5b7a8f-7931-402b-adf5-acb495a775e9/ticks/636910463263751810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:46.375181Z","submissionTimestamp":"2019-04-16T21:19:08.132504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:40.4924676Z","submissionTimestamp":"2019-04-29T22:58:00.1185801Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"326add5b-2094-43dd-b2ab-ce11a591eac3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/326add5b-2094-43dd-b2ab-ce11a591eac3/ticks/636921754566320128","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:36.6320128Z","submissionTimestamp":"2019-04-29T22:57:50.1161464Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '102692' + - '102855' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:19:58 GMT + - Mon, 29 Apr 2019 22:58:49 GMT expires: - '-1' pragma: @@ -1186,109 +1204,109 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A20%3A08Z%20and%20correlationId%20eq%20%27a7d18c56-d58f-4b05-9edb-0511ebdcb7f4%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T06%3A58%3A59Z%20and%20correlationId%20eq%20%271992f356-0036-4be0-a9da-a23b3dda6b18%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"3d2fb2eb-ea20-41a0-8281-3f3993a5298d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/3d2fb2eb-ea20-41a0-8281-3f3993a5298d/ticks/636910463682993438","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"df054f22-6bb0-40bd-8455-b31b952cefec","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"cf471d3c-6468-4484-8e3c-2e224b0986ec","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/cf471d3c-6468-4484-8e3c-2e224b0986ec/ticks/636921754958773796","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e0a6cc13-cf48-431f-b989-9a288c25647a","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:28.2993438Z","submissionTimestamp":"2019-04-16T21:19:48.0724615Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"6ddf696e-79bc-4954-8f79-93a6ad565cd8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76e87580-2e06-4169-9794-9418ee9d1f4e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/6ddf696e-79bc-4954-8f79-93a6ad565cd8/ticks/636910463571827213","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3ca95a09-b78e-4778-8436-6c5fc3a44403","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"7989fe28-e69f-4d89-a157-25e39ea3f184"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:19:17.1827213Z","submissionTimestamp":"2019-04-16T21:19:39.2043597Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"15498b04-ef13-4d43-aa79-f980211733a9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/15498b04-ef13-4d43-aa79-f980211733a9/ticks/636910463569327253","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3ca95a09-b78e-4778-8436-6c5fc3a44403","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:16.9327253Z","submissionTimestamp":"2019-04-16T21:19:39.2043597Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"28632c90-048b-4e93-a1bf-411dd35ec1c6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76e87580-2e06-4169-9794-9418ee9d1f4e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/28632c90-048b-4e93-a1bf-411dd35ec1c6/ticks/636910463545317993","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3ca95a09-b78e-4778-8436-6c5fc3a44403","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:14.5317993Z","submissionTimestamp":"2019-04-16T21:19:39.203359Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"45e33fe3-4e69-4ade-8ccc-d8c0fa0e8a86","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/45e33fe3-4e69-4ade-8ccc-d8c0fa0e8a86/ticks/636910463527327948","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"97481e73-2728-49ba-ae27-d3ae56ecae69","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:12.7327948Z","submissionTimestamp":"2019-04-16T21:19:35.072637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5b34836b-5a43-444c-b990-d39393c5f827","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a5224f8-529f-4e28-9e10-8179184ca864","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/5b34836b-5a43-444c-b990-d39393c5f827/ticks/636910463415930343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5e16bb90-ce0c-48dc-ade1-35ea4b282d5a","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"5e5f9db5-e1c5-47a4-9e31-eb2e58baf212","responseBody":"{\"name\":\"test-vmVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\",\"etag\":\"W/\\\"6d04e0b4-8e39-4cf1-9ada-fd82fbb0a995\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ba8c2d8f-bb11-43aa-b36c-39ee188d4d69\",\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\",\"etag\":\"W/\\\"6d04e0b4-8e39-4cf1-9ada-fd82fbb0a995\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:19:01.5930343Z","submissionTimestamp":"2019-04-16T21:19:22.1006603Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"78adfbf5-c505-4541-98ed-06035ef32620","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/78adfbf5-c505-4541-98ed-06035ef32620/ticks/636910463401751661","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"db861eca-3c60-4451-a0e8-8389c6a63d9a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:00.1751661Z","submissionTimestamp":"2019-04-16T21:19:27.1064911Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"e5d3712a-4063-445a-afb2-0096afa6bc81","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a5224f8-529f-4e28-9e10-8179184ca864","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/e5d3712a-4063-445a-afb2-0096afa6bc81/ticks/636910463400480758","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5e16bb90-ce0c-48dc-ade1-35ea4b282d5a","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:00.0480758Z","submissionTimestamp":"2019-04-16T21:19:22.1006603Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"46e04806-3739-4b8c-905f-55db25782e1c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/46e04806-3739-4b8c-905f-55db25782e1c/ticks/636910463398402562","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"82316308-48e3-41c8-9999-2175d00ca2ab","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:59.8402562Z","submissionTimestamp":"2019-04-16T21:19:21.080634Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"83c3520c-223d-4071-8953-dcdbaa4b8074","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/83c3520c-223d-4071-8953-dcdbaa4b8074/ticks/636910463397129807","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e4ee56df-f020-4b8c-99ec-76f2d5a934ef","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:59.7129807Z","submissionTimestamp":"2019-04-16T21:19:29.1436606Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1e9f85b-c529-45d9-babd-e4e28d3de9fa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1e9f85b-c529-45d9-babd-e4e28d3de9fa/ticks/636910463347202292","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0e13d63e-0f06-4877-af5d-c147014c9ae3","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"ca3865d7-b228-4466-8494-6ed53307517a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f53564a2-6063-4fa1-889f-e780da48f610\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.7202292Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"24cd7665-9cd3-4159-a25d-3a2dfbb39012","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/24cd7665-9cd3-4159-a25d-3a2dfbb39012/ticks/636910463346002258","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"13aa0280-9323-4a49-97a2-33138e05381f","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"788a03af-dce9-44cc-93d6-6208fe20e6a0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:15.8773796Z","submissionTimestamp":"2019-04-29T22:58:33.0754757Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ae0f42a3-b4f4-494a-bd4e-83b16d90d08d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9658d7e6-0bd0-4ca2-a647-223910ece22b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/ae0f42a3-b4f4-494a-bd4e-83b16d90d08d/ticks/636921754851043015","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"1b1b8221-8cee-4259-9493-cb7088d6056e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:58:05.1043015Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a74ec344-80e7-46d8-ad88-feda5234b0a6","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/a74ec344-80e7-46d8-ad88-feda5234b0a6/ticks/636921754850229687","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:05.0229687Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"46ba201c-795f-48bf-a28c-cd8f9bce861d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9658d7e6-0bd0-4ca2-a647-223910ece22b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/46ba201c-795f-48bf-a28c-cd8f9bce861d/ticks/636921754838621679","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:03.8621679Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ffdf2e4a-4a9e-4b9d-8533-fed4a30e8e2d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/ffdf2e4a-4a9e-4b9d-8533-fed4a30e8e2d/ticks/636921754829061266","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"13069528-21a7-4af4-8f1f-cd7de4b3f45d","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:02.9061266Z","submissionTimestamp":"2019-04-29T22:58:20.1198564Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"73fe65df-4ce9-411e-b2b8-7b4d49a5a967","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c98ce9d8-af1d-4dae-9caf-c2355f507d28","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/73fe65df-4ce9-411e-b2b8-7b4d49a5a967/ticks/636921754728119266","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"aee13828-64c2-4859-8a64-de335e1d8855","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"062606f9-0836-42c3-adf9-dbb01b229fe9","responseBody":"{\"name\":\"test-vmVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\",\"etag\":\"W/\\\"963a5c48-0762-4253-9ef1-7ca03843f159\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ba3ed508-c57b-49a9-a896-332a58685b0f\",\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\",\"etag\":\"W/\\\"963a5c48-0762-4253-9ef1-7ca03843f159\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:52.8119266Z","submissionTimestamp":"2019-04-29T22:58:14.073168Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ebd2d083-2e1a-4e0d-8561-dac5012b0c0e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/ebd2d083-2e1a-4e0d-8561-dac5012b0c0e/ticks/636921754725820135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e946f406-51e2-4af5-a84c-250029ad281a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:52.5820135Z","submissionTimestamp":"2019-04-29T22:58:16.0683561Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"8fa62ed3-6906-443c-91ab-5048c96510f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/8fa62ed3-6906-443c-91ab-5048c96510f3/ticks/636921754725472803","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d78c1a51-c53b-44ed-b5ef-88cf1bf45200","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:52.5472803Z","submissionTimestamp":"2019-04-29T22:58:14.1403873Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"5cc383aa-5169-4e59-be44-4a9d5c2ab478","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/5cc383aa-5169-4e59-be44-4a9d5c2ab478/ticks/636921754718091450","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8ed28d81-4a6e-459a-b6b4-c2de1c9f62f5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:51.809145Z","submissionTimestamp":"2019-04-29T22:58:17.0764556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"def91f89-5378-42e1-8e92-5cc5442431a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c98ce9d8-af1d-4dae-9caf-c2355f507d28","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/def91f89-5378-42e1-8e92-5cc5442431a9/ticks/636921754712770685","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"aee13828-64c2-4859-8a64-de335e1d8855","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:51.2770685Z","submissionTimestamp":"2019-04-29T22:58:14.073168Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"b8716d07-336a-483b-ba8f-9e9962b5ee66","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b8716d07-336a-483b-ba8f-9e9962b5ee66/ticks/636921754657907664","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a7bc3e62-0406-44de-97c7-3596dfa6a49a","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"81acefef-403d-4b1e-bc65-a1580977d486\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b1f844d8-489c-4914-a5c7-e110f2163ccc\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7907664Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a96bd539-dc99-4b0c-a758-f71b169f8af7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/a96bd539-dc99-4b0c-a758-f71b169f8af7/ticks/636921754657157635","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11861de9-9c5c-4976-a9ec-e2bfd44aba97","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d56f3454-dcfc-4a3e-bdf7-d0930c301837\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7157635Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"8da706e6-acf6-459e-a7b9-80ac6db19d78","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/8da706e6-acf6-459e-a7b9-80ac6db19d78/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a4c45562-b9ae-4dcb-8a5e-1f5f0718e412","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8e02b6b2-574f-46d0-9ba9-bad2186aa370\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.6002258Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87/ticks/636910463345152129","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.5152129Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c8597efa-92e0-4852-8ccb-6ee2b32a5003","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/c8597efa-92e0-4852-8ccb-6ee2b32a5003/ticks/636910463343851909","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"aa0fe133-a58c-42fe-8f69-919a809ea786","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"16a12234-df3d-4099-8d83-053996e86a85\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.3851909Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0a725736-1779-496a-8c73-a6a2bafd6e0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0a725736-1779-496a-8c73-a6a2bafd6e0b/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"ce10eb14-ca6c-45dc-a301-af14bb1136ca","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a1027401-7e3c-4eef-b005-6b3f89afa531","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/a1027401-7e3c-4eef-b005-6b3f89afa531/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"51e16c36-7534-457e-a543-e5eecc180c72","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/51e16c36-7534-457e-a543-e5eecc180c72/ticks/636921754655007661","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5007661Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"1220f380-11ef-4a81-aefc-dabfde260220","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/1220f380-11ef-4a81-aefc-dabfde260220/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"f924b7bf-262e-481c-bef7-902bfad85dd8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"01d47e1c-9b2e-4a7a-b6c8-576e0889e2e4"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"cd0ab001-f698-4f9a-aae2-a57528fa576a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/cd0ab001-f698-4f9a-aae2-a57528fa576a/ticks/636910463341752115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.1752115Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b02699c9-660d-4ae9-b622-2489c752a5d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b02699c9-660d-4ae9-b622-2489c752a5d4/ticks/636910463318010122","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.8010122Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"305ad14f-5f8d-4f47-a184-01629b55aab4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/305ad14f-5f8d-4f47-a184-01629b55aab4/ticks/636910463317910135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7910135Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0715bd17-585f-48f1-a68e-28dff09d26af","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0715bd17-585f-48f1-a68e-28dff09d26af/ticks/636910463317210093","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7210093Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"3c6dc5e8-dc20-4903-ae50-1f774057d31c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3c6dc5e8-dc20-4903-ae50-1f774057d31c/ticks/636910463316760402","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6760402Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c03fb374-b775-4bb6-bc9d-abf6ce1e2e74","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/c03fb374-b775-4bb6-bc9d-abf6ce1e2e74/ticks/636910463316160454","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6160454Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"a0420fff-a686-4a89-9cfa-d69575108cc7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/a0420fff-a686-4a89-9cfa-d69575108cc7/ticks/636910463302052280","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a7c731c5-95be-4ce3-905c-de9350a9a777","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/a7c731c5-95be-4ce3-905c-de9350a9a777/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ec50b0e-f87c-47fb-9016-cba4b51ffb3b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"30d3b5e6-9dc3-4fcb-b186-95756fa7ff72","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/30d3b5e6-9dc3-4fcb-b186-95756fa7ff72/ticks/636921754628582583","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8582583Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"7b6a5417-02ec-4c60-a060-15e5c287101f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/7b6a5417-02ec-4c60-a060-15e5c287101f/ticks/636921754628032474","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8032474Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"38b5bc6a-d9f7-4736-80a9-2dfd0c18869f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/38b5bc6a-d9f7-4736-80a9-2dfd0c18869f/ticks/636921754627682453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.7682453Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"e404810b-1e7c-4bbf-8f89-27f0137ce269","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/e404810b-1e7c-4bbf-8f89-27f0137ce269/ticks/636921754626532502","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.6532502Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"3b77681e-3d18-4dbb-8b44-94460de0ae10","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3b77681e-3d18-4dbb-8b44-94460de0ae10/ticks/636921754626282450","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.628245Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"dc3d05fb-6ca4-40b6-bee1-90ced9235dc9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/dc3d05fb-6ca4-40b6-bee1-90ced9235dc9/ticks/636921754604924676","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:50.205228Z","submissionTimestamp":"2019-04-16T21:19:18.0944383Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5e5b7a8f-7931-402b-adf5-acb495a775e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/5e5b7a8f-7931-402b-adf5-acb495a775e9/ticks/636910463263751810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:46.375181Z","submissionTimestamp":"2019-04-16T21:19:08.132504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:40.4924676Z","submissionTimestamp":"2019-04-29T22:58:00.1185801Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"326add5b-2094-43dd-b2ab-ce11a591eac3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/326add5b-2094-43dd-b2ab-ce11a591eac3/ticks/636921754566320128","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:36.6320128Z","submissionTimestamp":"2019-04-29T22:57:50.1161464Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '102692' + - '102855' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:08 GMT + - Mon, 29 Apr 2019 22:58:59 GMT expires: - '-1' pragma: @@ -1322,109 +1340,113 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A20%3A18Z%20and%20correlationId%20eq%20%27a7d18c56-d58f-4b05-9edb-0511ebdcb7f4%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T06%3A59%3A09Z%20and%20correlationId%20eq%20%271992f356-0036-4be0-a9da-a23b3dda6b18%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"3d2fb2eb-ea20-41a0-8281-3f3993a5298d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/3d2fb2eb-ea20-41a0-8281-3f3993a5298d/ticks/636910463682993438","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"df054f22-6bb0-40bd-8455-b31b952cefec","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"c01de98a-bf36-4f53-b40f-e733db468a05","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/c01de98a-bf36-4f53-b40f-e733db468a05/ticks/636921755272383798","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"02496b4e-d39c-4c0f-a8ad-a792c9ce287d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:47.2383798Z","submissionTimestamp":"2019-04-29T22:59:00.1373941Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"cf471d3c-6468-4484-8e3c-2e224b0986ec","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/cf471d3c-6468-4484-8e3c-2e224b0986ec/ticks/636921754958773796","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"e0a6cc13-cf48-431f-b989-9a288c25647a","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:28.2993438Z","submissionTimestamp":"2019-04-16T21:19:48.0724615Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"6ddf696e-79bc-4954-8f79-93a6ad565cd8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76e87580-2e06-4169-9794-9418ee9d1f4e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/6ddf696e-79bc-4954-8f79-93a6ad565cd8/ticks/636910463571827213","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3ca95a09-b78e-4778-8436-6c5fc3a44403","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"7989fe28-e69f-4d89-a157-25e39ea3f184"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:19:17.1827213Z","submissionTimestamp":"2019-04-16T21:19:39.2043597Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"15498b04-ef13-4d43-aa79-f980211733a9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/15498b04-ef13-4d43-aa79-f980211733a9/ticks/636910463569327253","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3ca95a09-b78e-4778-8436-6c5fc3a44403","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:16.9327253Z","submissionTimestamp":"2019-04-16T21:19:39.2043597Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"28632c90-048b-4e93-a1bf-411dd35ec1c6","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"76e87580-2e06-4169-9794-9418ee9d1f4e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/28632c90-048b-4e93-a1bf-411dd35ec1c6/ticks/636910463545317993","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"3ca95a09-b78e-4778-8436-6c5fc3a44403","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:14.5317993Z","submissionTimestamp":"2019-04-16T21:19:39.203359Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"45e33fe3-4e69-4ade-8ccc-d8c0fa0e8a86","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/45e33fe3-4e69-4ade-8ccc-d8c0fa0e8a86/ticks/636910463527327948","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"97481e73-2728-49ba-ae27-d3ae56ecae69","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:12.7327948Z","submissionTimestamp":"2019-04-16T21:19:35.072637Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5b34836b-5a43-444c-b990-d39393c5f827","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a5224f8-529f-4e28-9e10-8179184ca864","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/5b34836b-5a43-444c-b990-d39393c5f827/ticks/636910463415930343","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5e16bb90-ce0c-48dc-ade1-35ea4b282d5a","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"5e5f9db5-e1c5-47a4-9e31-eb2e58baf212","responseBody":"{\"name\":\"test-vmVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\",\"etag\":\"W/\\\"6d04e0b4-8e39-4cf1-9ada-fd82fbb0a995\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ba8c2d8f-bb11-43aa-b36c-39ee188d4d69\",\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\",\"etag\":\"W/\\\"6d04e0b4-8e39-4cf1-9ada-fd82fbb0a995\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:19:01.5930343Z","submissionTimestamp":"2019-04-16T21:19:22.1006603Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"78adfbf5-c505-4541-98ed-06035ef32620","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/78adfbf5-c505-4541-98ed-06035ef32620/ticks/636910463401751661","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"db861eca-3c60-4451-a0e8-8389c6a63d9a","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:00.1751661Z","submissionTimestamp":"2019-04-16T21:19:27.1064911Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"e5d3712a-4063-445a-afb2-0096afa6bc81","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4a5224f8-529f-4e28-9e10-8179184ca864","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/e5d3712a-4063-445a-afb2-0096afa6bc81/ticks/636910463400480758","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"5e16bb90-ce0c-48dc-ade1-35ea4b282d5a","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:19:00.0480758Z","submissionTimestamp":"2019-04-16T21:19:22.1006603Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"46e04806-3739-4b8c-905f-55db25782e1c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/46e04806-3739-4b8c-905f-55db25782e1c/ticks/636910463398402562","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"82316308-48e3-41c8-9999-2175d00ca2ab","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:59.8402562Z","submissionTimestamp":"2019-04-16T21:19:21.080634Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"83c3520c-223d-4071-8953-dcdbaa4b8074","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/83c3520c-223d-4071-8953-dcdbaa4b8074/ticks/636910463397129807","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e4ee56df-f020-4b8c-99ec-76f2d5a934ef","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:59.7129807Z","submissionTimestamp":"2019-04-16T21:19:29.1436606Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1e9f85b-c529-45d9-babd-e4e28d3de9fa","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1e9f85b-c529-45d9-babd-e4e28d3de9fa/ticks/636910463347202292","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"0e13d63e-0f06-4877-af5d-c147014c9ae3","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"ca3865d7-b228-4466-8494-6ed53307517a\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"f53564a2-6063-4fa1-889f-e780da48f610\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.7202292Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"24cd7665-9cd3-4159-a25d-3a2dfbb39012","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/24cd7665-9cd3-4159-a25d-3a2dfbb39012/ticks/636910463346002258","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"13aa0280-9323-4a49-97a2-33138e05381f","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"788a03af-dce9-44cc-93d6-6208fe20e6a0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"e06a13d9-24a7-4002-ab1a-eedeef09b50f\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:15.8773796Z","submissionTimestamp":"2019-04-29T22:58:33.0754757Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ae0f42a3-b4f4-494a-bd4e-83b16d90d08d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9658d7e6-0bd0-4ca2-a647-223910ece22b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/ae0f42a3-b4f4-494a-bd4e-83b16d90d08d/ticks/636921754851043015","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"1b1b8221-8cee-4259-9493-cb7088d6056e"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:58:05.1043015Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a74ec344-80e7-46d8-ad88-feda5234b0a6","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/a74ec344-80e7-46d8-ad88-feda5234b0a6/ticks/636921754850229687","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:05.0229687Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"46ba201c-795f-48bf-a28c-cd8f9bce861d","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"9658d7e6-0bd0-4ca2-a647-223910ece22b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/events/46ba201c-795f-48bf-a28c-cd8f9bce861d/ticks/636921754838621679","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"2c14fdcb-bb7c-4675-9200-851b7c89c528","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:03.8621679Z","submissionTimestamp":"2019-04-29T22:58:20.0642393Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ffdf2e4a-4a9e-4b9d-8533-fed4a30e8e2d","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/ffdf2e4a-4a9e-4b9d-8533-fed4a30e8e2d/ticks/636921754829061266","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"13069528-21a7-4af4-8f1f-cd7de4b3f45d","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:58:02.9061266Z","submissionTimestamp":"2019-04-29T22:58:20.1198564Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"73fe65df-4ce9-411e-b2b8-7b4d49a5a967","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c98ce9d8-af1d-4dae-9caf-c2355f507d28","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/73fe65df-4ce9-411e-b2b8-7b4d49a5a967/ticks/636921754728119266","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"aee13828-64c2-4859-8a64-de335e1d8855","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"062606f9-0836-42c3-adf9-dbb01b229fe9","responseBody":"{\"name\":\"test-vmVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\",\"etag\":\"W/\\\"963a5c48-0762-4253-9ef1-7ca03843f159\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ba3ed508-c57b-49a9-a896-332a58685b0f\",\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\",\"etag\":\"W/\\\"963a5c48-0762-4253-9ef1-7ca03843f159\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:52.8119266Z","submissionTimestamp":"2019-04-29T22:58:14.073168Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"ebd2d083-2e1a-4e0d-8561-dac5012b0c0e","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/ebd2d083-2e1a-4e0d-8561-dac5012b0c0e/ticks/636921754725820135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"e946f406-51e2-4af5-a84c-250029ad281a","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:52.5820135Z","submissionTimestamp":"2019-04-29T22:58:16.0683561Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"8fa62ed3-6906-443c-91ab-5048c96510f3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/8fa62ed3-6906-443c-91ab-5048c96510f3/ticks/636921754725472803","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"d78c1a51-c53b-44ed-b5ef-88cf1bf45200","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:52.5472803Z","submissionTimestamp":"2019-04-29T22:58:14.1403873Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"5cc383aa-5169-4e59-be44-4a9d5c2ab478","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/5cc383aa-5169-4e59-be44-4a9d5c2ab478/ticks/636921754718091450","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"8ed28d81-4a6e-459a-b6b4-c2de1c9f62f5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:51.809145Z","submissionTimestamp":"2019-04-29T22:58:17.0764556Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"def91f89-5378-42e1-8e92-5cc5442431a9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c98ce9d8-af1d-4dae-9caf-c2355f507d28","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/events/def91f89-5378-42e1-8e92-5cc5442431a9/ticks/636921754712770685","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"aee13828-64c2-4859-8a64-de335e1d8855","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigtest-vm\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:51.2770685Z","submissionTimestamp":"2019-04-29T22:58:14.073168Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"b8716d07-336a-483b-ba8f-9e9962b5ee66","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b8716d07-336a-483b-ba8f-9e9962b5ee66/ticks/636921754657907664","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"a7bc3e62-0406-44de-97c7-3596dfa6a49a","responseBody":"{\"name\":\"test-vmPublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\",\"etag\":\"W/\\\"81acefef-403d-4b1e-bc65-a1580977d486\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b1f844d8-489c-4914-a5c7-e110f2163ccc\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7907664Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a96bd539-dc99-4b0c-a758-f71b169f8af7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/a96bd539-dc99-4b0c-a758-f71b169f8af7/ticks/636921754657157635","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"11861de9-9c5c-4976-a9ec-e2bfd44aba97","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"d56f3454-dcfc-4a3e-bdf7-d0930c301837\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"c71e13f5-17e2-4218-9ab2-20cd7226dc2e\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.7157635Z","submissionTimestamp":"2019-04-29T22:58:04.0916594Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"8da706e6-acf6-459e-a7b9-80ac6db19d78","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/8da706e6-acf6-459e-a7b9-80ac6db19d78/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"a4c45562-b9ae-4dcb-8a5e-1f5f0718e412","responseBody":"{\"name\":\"test-vmNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"8e02b6b2-574f-46d0-9ba9-bad2186aa370\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"c088716c-9794-42bf-8d36-219191d764ee\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.6002258Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b1dc7b45-8e5a-43bd-a2b8-f45f2a69ee87/ticks/636910463345152129","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.5152129Z","submissionTimestamp":"2019-04-16T21:19:12.0898659Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c8597efa-92e0-4852-8ccb-6ee2b32a5003","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/c8597efa-92e0-4852-8ccb-6ee2b32a5003/ticks/636910463343851909","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"aa0fe133-a58c-42fe-8f69-919a809ea786","responseBody":"{\"name\":\"test-vmVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"16a12234-df3d-4099-8d83-053996e86a85\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"test-vmSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/subnets/test-vmSubnet\",\"etag\":\"W/\\\"3d73e2d6-2be5-4eee-adbd-04a3710dd5c3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:54.3851909Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0a725736-1779-496a-8c73-a6a2bafd6e0b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0a725736-1779-496a-8c73-a6a2bafd6e0b/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"ce10eb14-ca6c-45dc-a301-af14bb1136ca","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a1027401-7e3c-4eef-b005-6b3f89afa531","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/a1027401-7e3c-4eef-b005-6b3f89afa531/ticks/636921754655857642","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5857642Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"51e16c36-7534-457e-a543-e5eecc180c72","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/51e16c36-7534-457e-a543-e5eecc180c72/ticks/636921754655007661","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.5007661Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"1220f380-11ef-4a81-aefc-dabfde260220","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/1220f380-11ef-4a81-aefc-dabfde260220/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"f924b7bf-262e-481c-bef7-902bfad85dd8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/8d43b5f1-e1bf-478c-90c4-b99b0c3c39d6/ticks/636910463342852095","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"01d47e1c-9b2e-4a7a-b6c8-576e0889e2e4"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:18:54.2852095Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"cd0ab001-f698-4f9a-aae2-a57528fa576a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/cd0ab001-f698-4f9a-aae2-a57528fa576a/ticks/636910463341752115","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:54.1752115Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"b02699c9-660d-4ae9-b622-2489c752a5d4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"80aaac53-6ebc-4b1e-a6c1-e0841dec9af6","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/b02699c9-660d-4ae9-b622-2489c752a5d4/ticks/636910463318010122","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"75ff7d60-49a1-4dc6-a1b4-d24ae5703c1f","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.8010122Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"305ad14f-5f8d-4f47-a184-01629b55aab4","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2c69f757-c461-4de9-92a2-ada456c740d9","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/305ad14f-5f8d-4f47-a184-01629b55aab4/ticks/636910463317910135","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"7a88862d-1103-43e8-9caa-7132311e2c62","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7910135Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"0715bd17-585f-48f1-a68e-28dff09d26af","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/0715bd17-585f-48f1-a68e-28dff09d26af/ticks/636910463317210093","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.7210093Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"3c6dc5e8-dc20-4903-ae50-1f774057d31c","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"e4cdd49b-f365-4304-8230-1345dee02ee8","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3c6dc5e8-dc20-4903-ae50-1f774057d31c/ticks/636910463316760402","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"084a9219-e255-46c8-a4d5-922bc5831eac","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6760402Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"c03fb374-b775-4bb6-bc9d-abf6ce1e2e74","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5d38651d-0870-4d46-a253-6af0bb1095a0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f/events/c03fb374-b775-4bb6-bc9d-abf6ce1e2e74/ticks/636910463316160454","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"799a985a-59c8-4f97-9ef1-9516eff22464","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:51.6160454Z","submissionTimestamp":"2019-04-16T21:19:12.0888652Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"a0420fff-a686-4a89-9cfa-d69575108cc7","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/a0420fff-a686-4a89-9cfa-d69575108cc7/ticks/636910463302052280","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"a7c731c5-95be-4ce3-905c-de9350a9a777","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/a7c731c5-95be-4ce3-905c-de9350a9a777/ticks/636921754652832778","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ec50b0e-f87c-47fb-9016-cba4b51ffb3b"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-29T22:57:45.2832778Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"30d3b5e6-9dc3-4fcb-b186-95756fa7ff72","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/30d3b5e6-9dc3-4fcb-b186-95756fa7ff72/ticks/636921754628582583","level":"Warning","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8582583Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"7b6a5417-02ec-4c60-a060-15e5c287101f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"4d28cdd0-97d6-440c-88c5-7aeb2cf897fc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP/events/7b6a5417-02ec-4c60-a060-15e5c287101f/ticks/636921754628032474","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"581088bd-01f3-482b-990d-ce86ada9c8e8","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.8032474Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"38b5bc6a-d9f7-4736-80a9-2dfd0c18869f","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d80f0d49-2287-41b7-8c02-c45c51d08a00","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54/events/38b5bc6a-d9f7-4736-80a9-2dfd0c18869f/ticks/636921754627682453","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"b46cd314-8aef-44fa-8d65-c51e8d0d5f5c","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.7682453Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"e404810b-1e7c-4bbf-8f89-27f0137ce269","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"27dd1f56-6aaa-4601-8b5e-a39193a92ed7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET/events/e404810b-1e7c-4bbf-8f89-27f0137ce269/ticks/636921754626532502","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3c6c6eec-5de6-4510-9d9b-65207773c0b9","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\":\"test-vmSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.6532502Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"3b77681e-3d18-4dbb-8b44-94460de0ae10","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8c810617-9807-4f17-b733-dce99e867cf1","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG/events/3b77681e-3d18-4dbb-8b44-94460de0ae10/ticks/636921754626282450","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"914ccee1-db82-4b98-8927-6ae1da7e2fe6","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:42.628245Z","submissionTimestamp":"2019-04-29T22:58:04.0906582Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"dc3d05fb-6ca4-40b6-bee1-90ced9235dc9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/dc3d05fb-6ca4-40b6-bee1-90ced9235dc9/ticks/636921754604924676","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:18:50.205228Z","submissionTimestamp":"2019-04-16T21:19:18.0944383Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449113","nbf":"1555449113","exp":"1555453013","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAX5NpJAz69HHg81QJIECVh+1Ty2guavRKE+wF3MEVah3mrIFGiwMFF2Y79VBDNtcR4f/Ul8mJ4CN+xLJIAlAqm/8fVAzZBZof0Htw0Cm+mBk=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"rtKgVB-0pkCJb7vABwkGAA","ver":"1.0"},"correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","description":"","eventDataId":"5e5b7a8f-7931-402b-adf5-acb495a775e9","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"36fcb926-608d-11e9-95ed-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl/events/5e5b7a8f-7931-402b-adf5-acb495a775e9/ticks/636910463263751810","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:18:46.375181Z","submissionTimestamp":"2019-04-16T21:19:08.132504Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-29T22:57:40.4924676Z","submissionTimestamp":"2019-04-29T22:58:00.1185801Z","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_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556576103","nbf":"1556576103","exp":"1556580003","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAaZDUjikIWzCw2lJ03Sj/AYpnffdX0OLr2qQkHQxRc9mIFq78m5VFD9m4mdzwhwToBuQ37Im98v4yf9GGuvBmPeet7ygYGtZepJWHMlBm2Gg=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"xMS0Xy5dPEeKHs7J85JpAA","ver":"1.0"},"correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","description":"","eventDataId":"326add5b-2094-43dd-b2ab-ce11a591eac3","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"2d306a56-6ad2-11e9-b5c0-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn/events/326add5b-2094-43dd-b2ab-ce11a591eac3/ticks/636921754566320128","level":"Informational","resourceGroupName":"cli_test_vm_custom_image_conflict000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-29T22:57:36.6320128Z","submissionTimestamp":"2019-04-29T22:57:50.1161464Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '102692' + - '106446' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:19 GMT + - Mon, 29 Apr 2019 22:59:09 GMT expires: - '-1' pragma: @@ -1456,10 +1478,10 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461573571266446?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450282267053056?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -1471,7 +1493,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:20 GMT + - Mon, 29 Apr 2019 22:59:10 GMT expires: - '-1' pragma: @@ -1499,22 +1521,22 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001/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_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","name":"vm_deploy_e0wWtQCJWPgAU3rMkvutwSdV7IL6Sunl","properties":{"templateHash":"15196396466694972637","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:20:20.3856769Z","duration":"PT1M32.0346894S","correlationId":"a7d18c56-d58f-4b05-9edb-0511ebdcb7f4","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"test-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"test-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"test-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"test-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage9b675b5c9c8b8f"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"test-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"test-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage9b675b5c9c8b8f"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Resources/deployments/vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","name":"vm_deploy_zRKy8AnAqBZ76pphOOa6E3sGiVW2IpUn","properties":{"templateHash":"4229429683838017106","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-29T22:59:03.9455904Z","duration":"PT1M25.1732403S","correlationId":"1992f356-0036-4be0-a9da-a23b3dda6b18","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"test-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"test-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"test-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"test-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage428b2ca5163b54"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"test-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"test-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/virtualNetworks/test-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Storage/storageAccounts/vhdstorage428b2ca5163b54"}]}}' headers: cache-control: - no-cache content-length: - - '4521' + - '4520' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:20 GMT + - Mon, 29 Apr 2019 22:59:11 GMT expires: - '-1' pragma: @@ -1542,22 +1564,22 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"0148a6d9-85eb-4004-aae3-6e6885ed29e6\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"be136d62-9881-459e-b15d-7f169a9de455\"\ ,\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\": \"9\",\r\n \"version\": \"latest\"\r\n },\r\n\ \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"osdisk_9b675b5c9c\",\r\n \"createOption\": \"FromImage\",\r\n \ - \ \"vhd\": {\r\n \"uri\": \"https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd\"\ + : \"osdisk_428b2ca516\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"vhd\": {\r\n \"uri\": \"https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\"\ : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ : {\r\n \"computerName\": \"test-vm\",\r\n \"adminUsername\": \"\ @@ -1567,34 +1589,36 @@ interactions: : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\"\ }]},\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\": \"2019-04-16T21:20:22+00:00\"\ - \r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n \ - \ {\r\n \"name\": \"osdisk_9b675b5c9c\",\r\n \"statuses\"\ - : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ - ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\ - : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-16T21:19:16.2974463+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\": \"2019-04-16T21:20:17.500584+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 \"computerName\": \"test-vm\",\r\n \"osName\": \"debian\"\ + ,\r\n \"osVersion\": \"9.8\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\"\ + : \"2.2.40\",\r\n \"statuses\": [\r\n {\r\n \"\ + code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\"\ + ,\r\n \"displayStatus\": \"Ready\",\r\n \"message\"\ + : \"Guest Agent is running\",\r\n \"time\": \"2019-04-29T22:59:12+00:00\"\ + \r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n \ + \ },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_428b2ca516\"\ + ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ + : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ + \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ + \ \"time\": \"2019-04-29T22:58:05.0684325+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\": \"2019-04-29T22:59:03.4434358+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_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ ,\r\n \"name\": \"test-vm\"\r\n}" headers: cache-control: - no-cache content-length: - - '2763' + - '2852' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:22 GMT + - Mon, 29 Apr 2019 22:59:12 GMT expires: - '-1' pragma: @@ -1611,7 +1635,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3980,Microsoft.Compute/LowCostGet30Min;31980 + - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31957 status: code: 200 message: OK @@ -1629,8 +1653,8 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1638,12 +1662,12 @@ interactions: response: body: string: "{\r\n \"name\": \"test-vmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\"\ - ,\r\n \"etag\": \"W/\\\"a99298f4-a56b-41bc-91df-ed799b4ffb5b\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"875ef6da-32cb-4388-9a8f-65c04a68746e\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba8c2d8f-bb11-43aa-b36c-39ee188d4d69\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba3ed508-c57b-49a9-a896-332a58685b0f\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigtest-vm\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\"\ - ,\r\n \"etag\": \"W/\\\"a99298f4-a56b-41bc-91df-ed799b4ffb5b\\\"\"\ + ,\r\n \"etag\": \"W/\\\"875ef6da-32cb-4388-9a8f-65c04a68746e\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ @@ -1653,8 +1677,8 @@ interactions: \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\": \"gqrkcfr314mubdmdau2zn0dkqf.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-31-E5-4F\",\r\n \"enableAcceleratedNetworking\"\ + internalDomainNameSuffix\": \"kq0g5vp21q5evppx0cjqymaygh.dx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-34-F6-99\",\r\n \"enableAcceleratedNetworking\"\ : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkSecurityGroups/test-vmNSG\"\ \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ @@ -1669,9 +1693,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:22 GMT + - Mon, 29 Apr 2019 22:59:12 GMT etag: - - W/"a99298f4-a56b-41bc-91df-ed799b4ffb5b" + - W/"875ef6da-32cb-4388-9a8f-65c04a68746e" expires: - '-1' pragma: @@ -1704,8 +1728,8 @@ interactions: ParameterSetName: - -g -n --image --use-unmanaged-disk --admin-username --admin-password --authentication-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1713,10 +1737,10 @@ interactions: response: body: string: "{\r\n \"name\": \"test-vmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/publicIPAddresses/test-vmPublicIP\"\ - ,\r\n \"etag\": \"W/\\\"b9bbe2ec-7f9d-46a7-be52-46b0e300b5ed\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"6a2325f4-7fc5-45ef-b58d-d8defb8f2fab\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f53564a2-6063-4fa1-889f-e780da48f610\"\ - ,\r\n \"ipAddress\": \"40.112.161.220\",\r\n \"publicIPAddressVersion\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b1f844d8-489c-4914-a5c7-e110f2163ccc\"\ + ,\r\n \"ipAddress\": \"13.64.198.38\",\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_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic/ipConfigurations/ipconfigtest-vm\"\ @@ -1727,13 +1751,13 @@ interactions: cache-control: - no-cache content-length: - - '1039' + - '1037' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:22 GMT + - Mon, 29 Apr 2019 22:59:12 GMT etag: - - W/"b9bbe2ec-7f9d-46a7-be52-46b0e300b5ed" + - W/"6a2325f4-7fc5-45ef-b58d-d8defb8f2fab" expires: - '-1' pragma: @@ -1766,22 +1790,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"0148a6d9-85eb-4004-aae3-6e6885ed29e6\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"be136d62-9881-459e-b15d-7f169a9de455\"\ ,\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\": \"9\",\r\n \"version\": \"latest\"\r\n },\r\n\ \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"osdisk_9b675b5c9c\",\r\n \"createOption\": \"FromImage\",\r\n \ - \ \"vhd\": {\r\n \"uri\": \"https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd\"\ + : \"osdisk_428b2ca516\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"vhd\": {\r\n \"uri\": \"https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\"\ : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ : {\r\n \"computerName\": \"test-vm\",\r\n \"adminUsername\": \"\ @@ -1802,7 +1826,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:23 GMT + - Mon, 29 Apr 2019 22:59:13 GMT expires: - '-1' pragma: @@ -1819,7 +1843,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3979,Microsoft.Compute/LowCostGet30Min;31979 + - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31956 status: code: 200 message: OK @@ -1839,8 +1863,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -1850,17 +1874,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/91b48b71-2f88-41a2-b555-bbf7a25ccf72?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/307461f6-ed45-4b62-a5fb-d966f8312f1c?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 16 Apr 2019 21:20:23 GMT + - Mon, 29 Apr 2019 22:59:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/91b48b71-2f88-41a2-b555-bbf7a25ccf72?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/307461f6-ed45-4b62-a5fb-d966f8312f1c?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -1871,7 +1895,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1197 + - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1193 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1891,15 +1915,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/91b48b71-2f88-41a2-b555-bbf7a25ccf72?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/307461f6-ed45-4b62-a5fb-d966f8312f1c?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:20:24.0474582+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:20:36.8286794+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"91b48b71-2f88-41a2-b555-bbf7a25ccf72\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T22:59:14.3028066+00:00\",\r\n \"\ + endTime\": \"2019-04-29T22:59:28.5059131+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"307461f6-ed45-4b62-a5fb-d966f8312f1c\"\r\n}" headers: cache-control: - no-cache @@ -1908,7 +1932,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:53 GMT + - Mon, 29 Apr 2019 22:59:44 GMT expires: - '-1' pragma: @@ -1925,7 +1949,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29976 + - Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999 status: code: 200 message: OK @@ -1943,15 +1967,15 @@ interactions: ParameterSetName: - -g -n --source --os-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001","name":"cli_test_vm_custom_image_conflict000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:18:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001","name":"cli_test_vm_custom_image_conflict000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:57:32Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1960,7 +1984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:54 GMT + - Mon, 29 Apr 2019 22:59:45 GMT expires: - '-1' pragma: @@ -1976,8 +2000,8 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {}, "sku": {"name": "Premium_LRS"}, "properties": - {"osType": "Linux", "creationData": {"createOption": "Import", "sourceUri": - "https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd"}}}' + {"osType": "Linux", "hyperVGeneration": "V1", "creationData": {"createOption": + "Import", "sourceUri": "https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd"}}}' headers: Accept: - application/json @@ -1988,14 +2012,14 @@ interactions: Connection: - keep-alive Content-Length: - - '243' + - '269' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --source --os-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT @@ -2003,26 +2027,27 @@ interactions: response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"\ - properties\": {\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\ - \n \"createOption\": \"Import\",\r\n \"sourceUri\": \"https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd\"\ + properties\": {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\"\ + : \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Import\"\ + ,\r\n \"sourceUri\": \"https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd\"\ \r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"diskSizeBytes\"\ : 32212254720,\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"\ westus\",\r\n \"tags\": {},\r\n \"name\": \"test-vm\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/14f2f80e-e8ec-462d-8dea-1b0403a3bbb0?api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4b8f0472-35d8-49c8-97b7-ff535f6342b4?api-version=2018-09-30 cache-control: - no-cache content-length: - - '427' + - '458' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:20:55 GMT + - Mon, 29 Apr 2019 22:59:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/14f2f80e-e8ec-462d-8dea-1b0403a3bbb0?monitor=true&api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4b8f0472-35d8-49c8-97b7-ff535f6342b4?monitor=true&api-version=2018-09-30 pragma: - no-cache server: @@ -2033,9 +2058,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -2053,32 +2078,32 @@ interactions: ParameterSetName: - -g -n --source --os-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/14f2f80e-e8ec-462d-8dea-1b0403a3bbb0?api-version=2018-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4b8f0472-35d8-49c8-97b7-ff535f6342b4?api-version=2018-09-30 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:20:55.856362+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:20:56.6532095+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2019-04-29T22:59:47.0219253+00:00\",\r\n \"\ + endTime\": \"2019-04-29T22:59:47.8656369+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\"sku\":{\"name\":\"Premium_LRS\"\ - ,\"tier\":\"Premium\"},\"properties\":{\"osType\":\"Linux\",\"creationData\"\ - :{\"createOption\":\"Import\",\"sourceUri\":\"https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd\"\ + ,\"tier\":\"Premium\"},\"properties\":{\"osType\":\"Linux\",\"hyperVGeneration\"\ + :\"V1\",\"creationData\":{\"createOption\":\"Import\",\"sourceUri\":\"https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd\"\ },\"diskSizeGB\":30,\"diskIOPSReadWrite\":120,\"diskMBpsReadWrite\":25,\"\ - timeCreated\":\"2019-04-16T21:20:55.9656931+00:00\",\"provisioningState\"\ - :\"Succeeded\",\"diskState\":\"Unattached\"},\"type\":\"Microsoft.Compute/disks\"\ + timeCreated\":\"2019-04-29T22:59:47.162497+00:00\",\"provisioningState\":\"\ + Succeeded\",\"diskState\":\"Unattached\"},\"type\":\"Microsoft.Compute/disks\"\ ,\"location\":\"westus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/disks/test-vm\"\ - ,\"name\":\"test-vm\"}\r\n },\r\n \"name\": \"14f2f80e-e8ec-462d-8dea-1b0403a3bbb0\"\ + ,\"name\":\"test-vm\"}\r\n },\r\n \"name\": \"4b8f0472-35d8-49c8-97b7-ff535f6342b4\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '882' + - '906' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:21:25 GMT + - Mon, 29 Apr 2019 23:00:17 GMT expires: - '-1' pragma: @@ -2095,7 +2120,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989 + - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399968 status: code: 200 message: OK @@ -2113,18 +2138,18 @@ interactions: ParameterSetName: - -g -n --source --os-type User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/disks/test-vm?api-version=2018-09-30 response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\"\ : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\"\ - ,\r\n \"creationData\": {\r\n \"createOption\": \"Import\",\r\n \ - \ \"sourceUri\": \"https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd\"\ + ,\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \ + \ \"createOption\": \"Import\",\r\n \"sourceUri\": \"https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd\"\ \r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\ - \n \"diskMBpsReadWrite\": 25,\r\n \"timeCreated\": \"2019-04-16T21:20:55.9656931+00:00\"\ + \n \"diskMBpsReadWrite\": 25,\r\n \"timeCreated\": \"2019-04-29T22:59:47.162497+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_vm_custom_image_conflict000001/providers/Microsoft.Compute/disks/test-vm\"\ @@ -2133,11 +2158,11 @@ interactions: cache-control: - no-cache content-length: - - '797' + - '827' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:21:26 GMT + - Mon, 29 Apr 2019 23:00:17 GMT expires: - '-1' pragma: @@ -2154,7 +2179,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4992,Microsoft.Compute/LowCostGet30Min;39990 + - Microsoft.Compute/LowCostGet3Min;4995,Microsoft.Compute/LowCostGet30Min;39961 status: code: 200 message: OK @@ -2174,8 +2199,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -2185,17 +2210,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/06577311-9d0e-4d9d-aa31-e12b6a001ff8?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 16 Apr 2019 21:21:27 GMT + - Mon, 29 Apr 2019 23:00:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/06577311-9d0e-4d9d-aa31-e12b6a001ff8?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -2206,7 +2231,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1197 + - Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2226,24 +2251,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/06577311-9d0e-4d9d-aa31-e12b6a001ff8?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:21:27.688086+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"06577311-9d0e-4d9d-aa31-e12b6a001ff8\"\ + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:21:37 GMT + - Mon, 29 Apr 2019 23:00:29 GMT expires: - '-1' pragma: @@ -2260,7 +2285,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29971 + - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998 status: code: 200 message: OK @@ -2278,24 +2303,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/06577311-9d0e-4d9d-aa31-e12b6a001ff8?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:21:27.688086+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:22:08.4539263+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"06577311-9d0e-4d9d-aa31-e12b6a001ff8\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:13 GMT + - Mon, 29 Apr 2019 23:01:05 GMT expires: - '-1' pragma: @@ -2312,7 +2337,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29964 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 status: code: 200 message: OK @@ -2324,30 +2349,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - vm generalize + - vm deallocate Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/generalize?api-version=2019-03-01 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: '' + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '134' + content-type: + - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:14 GMT + - Mon, 29 Apr 2019 23:01:35 GMT expires: - '-1' pragma: @@ -2357,12 +2382,14 @@ interactions: - 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/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1194 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991 status: code: 200 message: OK @@ -2374,49 +2401,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"0148a6d9-85eb-4004-aae3-6e6885ed29e6\"\ - ,\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\": \"9\",\r\n \"version\": \"latest\"\r\n },\r\n\ - \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"osdisk_9b675b5c9c\",\r\n \"createOption\": \"FromImage\",\r\n \ - \ \"vhd\": {\r\n \"uri\": \"https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\"\ - : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ - : {\r\n \"computerName\": \"test-vm\",\r\n \"adminUsername\": \"\ - ubuntu\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\"\ - : [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ - : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\"\ - }]},\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_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ - ,\r\n \"name\": \"test-vm\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '1619' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:15 GMT + - Mon, 29 Apr 2019 23:02:06 GMT expires: - '-1' pragma: @@ -2433,7 +2441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3980,Microsoft.Compute/LowCostGet30Min;31965 + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988 status: code: 200 message: OK @@ -2445,93 +2453,82 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001","name":"cli_test_vm_custom_image_conflict000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:18:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '384' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:15 GMT + - Mon, 29 Apr 2019 23:02:36 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;14987,Microsoft.Compute/GetOperation30Min;29986 status: code: 200 message: OK - request: - body: 'b''{"location": "westus", "tags": {}, "properties": {"sourceVirtualMachine": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"}}}''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive - Content-Length: - - '280' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm?api-version=2018-10-01 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ - \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ - \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd\"\ - ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ - : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm\"\ - ,\r\n \"name\": \"img-from-vm\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b79dc424-726c-44c7-b7ba-e7a6aba9f8b1?api-version=2018-10-01 cache-control: - no-cache content-length: - - '980' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:21 GMT + - Mon, 29 Apr 2019 23:03:07 GMT expires: - '-1' pragma: @@ -2541,15 +2538,17 @@ interactions: - 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/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29983 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2558,30 +2557,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b79dc424-726c-44c7-b7ba-e7a6aba9f8b1?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:22:16.8446085+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:22:27.0477954+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"b79dc424-726c-44c7-b7ba-e7a6aba9f8b1\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:52 GMT + - Mon, 29 Apr 2019 23:03:37 GMT expires: - '-1' pragma: @@ -2598,7 +2597,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29958 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29980 status: code: 200 message: OK @@ -2610,37 +2609,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ - \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ - \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd\"\ - ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ - : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm\"\ - ,\r\n \"name\": \"img-from-vm\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '981' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:52 GMT + - Mon, 29 Apr 2019 23:04:07 GMT expires: - '-1' pragma: @@ -2657,7 +2649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29977 status: code: 200 message: OK @@ -2669,49 +2661,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"0148a6d9-85eb-4004-aae3-6e6885ed29e6\"\ - ,\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\": \"9\",\r\n \"version\": \"latest\"\r\n },\r\n\ - \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ - : \"osdisk_9b675b5c9c\",\r\n \"createOption\": \"FromImage\",\r\n \ - \ \"vhd\": {\r\n \"uri\": \"https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd\"\ - \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\"\ - : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ - : {\r\n \"computerName\": \"test-vm\",\r\n \"adminUsername\": \"\ - ubuntu\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ - : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\"\ - : [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ - : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ - :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\"\ - }]},\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_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ - ,\r\n \"name\": \"test-vm\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '1619' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:54 GMT + - Mon, 29 Apr 2019 23:04:37 GMT expires: - '-1' pragma: @@ -2728,7 +2701,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3973,Microsoft.Compute/LowCostGet30Min;31958 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29974 status: code: 200 message: OK @@ -2740,93 +2713,82 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001","name":"cli_test_vm_custom_image_conflict000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:18:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '384' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:54 GMT + - Mon, 29 Apr 2019 23:05:08 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;14985,Microsoft.Compute/GetOperation30Min;29972 status: code: 200 message: OK - request: - body: 'b''{"location": "westus", "tags": {}, "properties": {"sourceVirtualMachine": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"}}}''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive - Content-Length: - - '280' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm-id?api-version=2018-10-01 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ - \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ - \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd\"\ - ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ - : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm-id\"\ - ,\r\n \"name\": \"img-from-vm-id\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/34912060-c615-4152-8511-5a0a36657b68?api-version=2018-10-01 cache-control: - no-cache content-length: - - '986' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:59 GMT + - Mon, 29 Apr 2019 23:05:40 GMT expires: - '-1' pragma: @@ -2836,15 +2798,17 @@ interactions: - 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/CreateImages3Min;38,Microsoft.Compute/CreateImages30Min;198 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2853,30 +2817,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/34912060-c615-4152-8511-5a0a36657b68?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:22:55.3135917+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:23:05.5011612+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"34912060-c615-4152-8511-5a0a36657b68\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:30 GMT + - Mon, 29 Apr 2019 23:06:11 GMT expires: - '-1' pragma: @@ -2893,7 +2857,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29954 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996 status: code: 200 message: OK @@ -2905,37 +2869,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm-id?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ - \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ - \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage9b675b5c9c8b8f.blob.core.windows.net/vhds/osdisk_9b675b5c9c.vhd\"\ - ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ - : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm-id\"\ - ,\r\n \"name\": \"img-from-vm-id\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '987' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:30 GMT + - Mon, 29 Apr 2019 23:06:40 GMT expires: - '-1' pragma: @@ -2952,7 +2909,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1796 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993 status: code: 200 message: OK @@ -2964,93 +2921,844 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive ParameterSetName: - - -g -n --source --os-type + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001","name":"cli_test_vm_custom_image_conflict000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:18:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '384' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:31 GMT + - Mon, 29 Apr 2019 23:07:11 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;14990,Microsoft.Compute/GetOperation30Min;29990 status: code: 200 message: OK - request: - body: 'b''{"location": "westus", "tags": {}, "properties": {"storageProfile": - {"osDisk": {"osType": "Linux", "osState": "Generalized", "managedDisk": {"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/disks/test-vm"}}, - "dataDisks": []}}}''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - image create + - vm deallocate Connection: - keep-alive - Content-Length: - - '355' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --source --os-type + - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-disk-id?api-version=2018-10-01 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa7dc03-8a11-42a4-90d6-62266e5d891f?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\"\ - : {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\"\ - ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/disks/test-vm\"\ - \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ - : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-disk-id\"\ - ,\r\n \"name\": \"img-from-disk-id\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T23:00:19.2347541+00:00\",\r\n \"\ + endTime\": \"2019-04-29T23:07:41.4358357+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"ffa7dc03-8a11-42a4-90d6-62266e5d891f\"\r\n}" headers: - azure-asyncnotification: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 29 Apr 2019 23:07:42 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;14987,Microsoft.Compute/GetOperation30Min;29987 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm generalize + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm/generalize?api-version=2019-03-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 29 Apr 2019 23:07:43 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-resource: + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"vmId\": \"be136d62-9881-459e-b15d-7f169a9de455\"\ + ,\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\": \"9\",\r\n \"version\": \"latest\"\r\n },\r\n\ + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ + : \"osdisk_428b2ca516\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"vhd\": {\r\n \"uri\": \"https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd\"\ + \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\"\ + : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ + : {\r\n \"computerName\": \"test-vm\",\r\n \"adminUsername\": \"\ + ubuntu\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ + : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\"\ + : [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ + : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\"\ + }]},\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_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ + ,\r\n \"name\": \"test-vm\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1619' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 29 Apr 2019 23:07:43 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;3999,Microsoft.Compute/LowCostGet30Min;31999 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001","name":"cli_test_vm_custom_image_conflict000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:57:32Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 29 Apr 2019 23:07: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''{"location": "westus", "tags": {}, "properties": {"sourceVirtualMachine": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"}, + "hyperVGeneration": "V1"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + Content-Length: + - '306' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ + \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ + \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ + \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd\"\ + ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ + : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ + \ \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm\"\ + ,\r\n \"name\": \"img-from-vm\"\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/047f6afb-7d6e-45ad-be31-e0fa0fe85426?api-version=2019-03-01 + cache-control: + - no-cache + content-length: + - '1011' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 29 Apr 2019 23:07:49 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-resource: + - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/047f6afb-7d6e-45ad-be31-e0fa0fe85426?api-version=2019-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-04-29T23:07:45.2797754+00:00\",\r\n \"\ + endTime\": \"2019-04-29T23:07:55.5770681+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"047f6afb-7d6e-45ad-be31-e0fa0fe85426\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 29 Apr 2019 23:08: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/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29984 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ + \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ + \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ + \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd\"\ + ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ + : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ + \ \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm\"\ + ,\r\n \"name\": \"img-from-vm\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1012' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 29 Apr 2019 23:08: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/GetImages3Min;355,Microsoft.Compute/GetImages30Min;1795 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"vmId\": \"be136d62-9881-459e-b15d-7f169a9de455\"\ + ,\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\": \"9\",\r\n \"version\": \"latest\"\r\n },\r\n\ + \ \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\"\ + : \"osdisk_428b2ca516\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"vhd\": {\r\n \"uri\": \"https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd\"\ + \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\"\ + : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ + : {\r\n \"computerName\": \"test-vm\",\r\n \"adminUsername\": \"\ + ubuntu\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ + : false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\"\ + : [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\ + : true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\ + :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Network/networkInterfaces/test-vmVMNic\"\ + }]},\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_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ + ,\r\n \"name\": \"test-vm\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1619' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 29 Apr 2019 23:08: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;3997,Microsoft.Compute/LowCostGet30Min;31997 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001","name":"cli_test_vm_custom_image_conflict000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:57:32Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 29 Apr 2019 23:08: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: 'b''{"location": "westus", "tags": {}, "properties": {"sourceVirtualMachine": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm"}, + "hyperVGeneration": "V1"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + Content-Length: + - '306' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm-id?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ + \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ + \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ + \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd\"\ + ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ + : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ + \ \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm-id\"\ + ,\r\n \"name\": \"img-from-vm-id\"\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f2be7784-eae9-423f-b316-5faab801f74d?api-version=2019-03-01 + cache-control: + - no-cache + content-length: + - '1017' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 29 Apr 2019 23:08:27 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-resource: + - Microsoft.Compute/CreateImages3Min;38,Microsoft.Compute/CreateImages30Min;198 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f2be7784-eae9-423f-b316-5faab801f74d?api-version=2019-03-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-04-29T23:08:22.9376966+00:00\",\r\n \"\ + endTime\": \"2019-04-29T23:08:33.1100283+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"f2be7784-eae9-423f-b316-5faab801f74d\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 29 Apr 2019 23:08:58 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;14985,Microsoft.Compute/GetOperation30Min;29982 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm-id?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/virtualMachines/test-vm\"\ + \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ + \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ + \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage428b2ca5163b54.blob.core.windows.net/vhds/osdisk_428b2ca516.vhd\"\ + ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ + : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ + \ \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-vm-id\"\ + ,\r\n \"name\": \"img-from-vm-id\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1018' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 29 Apr 2019 23:08:57 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/GetImages3Min;353,Microsoft.Compute/GetImages30Min;1793 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + ParameterSetName: + - -g -n --source --os-type --hyper-v-generation + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_custom_image_conflict000001?api-version=2018-05-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001","name":"cli_test_vm_custom_image_conflict000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:57:32Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 29 Apr 2019 23:08:59 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''{"location": "westus", "tags": {}, "properties": {"storageProfile": + {"osDisk": {"osType": "Linux", "osState": "Generalized", "managedDisk": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/disks/test-vm"}}, + "dataDisks": []}, "hyperVGeneration": "V1"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - image create + Connection: + - keep-alive + Content-Length: + - '381' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --source --os-type --hyper-v-generation + User-Agent: + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-disk-id?api-version=2019-03-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\"\ + : {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\"\ + ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/disks/test-vm\"\ + \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ + : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ + \ \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-disk-id\"\ + ,\r\n \"name\": \"img-from-disk-id\"\r\n}" + headers: + azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70c0d7f9-5152-4aa6-ae6a-292ff239afd6?api-version=2018-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/eea1efa0-636a-4cbd-9860-b3496f876827?api-version=2019-03-01 cache-control: - no-cache content-length: - - '846' + - '877' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:32 GMT + - Mon, 29 Apr 2019 23:09:00 GMT expires: - '-1' pragma: @@ -3081,17 +3789,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source --os-type + - -g -n --source --os-type --hyper-v-generation User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70c0d7f9-5152-4aa6-ae6a-292ff239afd6?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/eea1efa0-636a-4cbd-9860-b3496f876827?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:23:32.6419608+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:23:37.7513897+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"70c0d7f9-5152-4aa6-ae6a-292ff239afd6\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T23:09:00.3456266+00:00\",\r\n \"\ + endTime\": \"2019-04-29T23:09:05.5020774+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"eea1efa0-636a-4cbd-9860-b3496f876827\"\r\n}" headers: cache-control: - no-cache @@ -3100,7 +3808,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:03 GMT + - Mon, 29 Apr 2019 23:09:30 GMT expires: - '-1' pragma: @@ -3117,7 +3825,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29948 + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29980 status: code: 200 message: OK @@ -3133,12 +3841,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --source --os-type + - -g -n --source --os-type --hyper-v-generation User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-disk-id?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-disk-id?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\"\ @@ -3147,18 +3855,19 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/disks/test-vm\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-disk-id\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_custom_image_conflict000001/providers/Microsoft.Compute/images/img-from-disk-id\"\ ,\r\n \"name\": \"img-from-disk-id\"\r\n}" headers: cache-control: - no-cache content-length: - - '874' + - '905' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:03 GMT + - Mon, 29 Apr 2019 23:09:31 GMT expires: - '-1' pragma: @@ -3175,7 +3884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;354,Microsoft.Compute/GetImages30Min;1794 + - Microsoft.Compute/GetImages3Min;351,Microsoft.Compute/GetImages30Min;1791 status: code: 200 message: OK @@ -3195,8 +3904,8 @@ interactions: ParameterSetName: - --name --yes --no-wait User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: DELETE @@ -3210,11 +3919,11 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2019 21:24:04 GMT + - Mon, 29 Apr 2019 23:09:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk06NUZDVVNUT006NUZJTUFHRTo1RkNPTkZMSUNUVlY3THw0RTYyNzNCQUExRTAzQkVFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGVk06NUZDVVNUT006NUZJTUFHRTo1RkNPTkZMSUNUNjJEMnxEQjE3MTQ5Q0I0MjY0QjNCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache strict-transport-security: diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_generalize.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_generalize.yaml index e4652dac546..9d274bd40f7 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_generalize.yaml +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_generalize.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-04-16T21:28:13Z"}}' + "date": "2019-04-30T01:07:35Z"}}' headers: Accept: - application/json @@ -18,15 +18,15 @@ interactions: ParameterSetName: - --location --name --tag User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001","name":"cli_test_generalize_vm000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:28:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001","name":"cli_test_generalize_vm000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -35,7 +35,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:15 GMT + - Tue, 30 Apr 2019 01:07:38 GMT expires: - '-1' pragma: @@ -63,15 +63,15 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001","name":"cli_test_generalize_vm000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:28:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001","name":"cli_test_generalize_vm000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -80,7 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:16 GMT + - Tue, 30 Apr 2019 01:07:39 GMT expires: - '-1' pragma: @@ -163,13 +163,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:16 GMT + - Tue, 30 Apr 2019 01:07:40 GMT etag: - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"' expires: - - Tue, 16 Apr 2019 21:33:16 GMT + - Tue, 30 Apr 2019 01:12:40 GMT source-age: - - '194' + - '204' strict-transport-security: - max-age=31536000 vary: @@ -183,17 +183,17 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 822c5b6681b34503aee8612f90846820eadef1bc + - f637e94b1b3fdc548699e66930c476f31a177d05 x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - D892:755D:3DDB7D:42FED3:5CB6482E + - E152:0E13:84575:9A924:5CC79F0E x-served-by: - - cache-sea1042-SEA + - cache-dfw18644-DFW x-timer: - - S1555450096.344588,VS0,VE1 + - S1556586460.456051,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -213,8 +213,8 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-storage/3.1.1 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-storage/3.1.1 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -230,7 +230,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:15 GMT + - Tue, 30 Apr 2019 01:07:40 GMT expires: - '-1' pragma: @@ -258,8 +258,8 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -275,7 +275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:16 GMT + - Tue, 30 Apr 2019 01:07:40 GMT expires: - '-1' pragma: @@ -293,7 +293,7 @@ interactions: body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {"adminPassword": {"type": "securestring", "metadata": {"description": "Secure adminPassword"}}}, "variables": {}, "resources": - [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage29c6a8d2a5f0cb", + [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstoragea81479efb078df", "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [], "properties": {"accountType": "Premium_LRS"}}, {"name": "vm-generalizeVNET", "type": "Microsoft.Network/virtualNetworks", "location": "westus", "apiVersion": @@ -316,12 +316,12 @@ interactions: "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"}}}, {"apiVersion": "2019-03-01", "type": "Microsoft.Compute/virtualMachines", "name": - "vm-generalize", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb", + "vm-generalize", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df", "Microsoft.Network/networkInterfaces/vm-generalizeVMNic"], "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"}]}, - "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_29c6a8d2a5", - "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorage29c6a8d2a5f0cb.blob.core.windows.net/vhds/osdisk_29c6a8d2a5.vhd"}}, + "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_a81479efb0", + "caching": "ReadWrite", "vhd": {"uri": "https://vhdstoragea81479efb078df.blob.core.windows.net/vhds/osdisk_a81479efb0.vhd"}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "vm-generalize", "adminUsername": "ubuntu", "adminPassword": "[parameters(\''adminPassword\'')]"}}}], @@ -343,18 +343,18 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","name":"vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","properties":{"templateHash":"5986482876557839745","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:28:20.0296418Z","duration":"PT1.2522866S","correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm-generalizeVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-generalizeNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-generalizePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage29c6a8d2a5f0cb"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-generalize"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","name":"vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","properties":{"templateHash":"15136744677087758576","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-30T01:07:44.8174013Z","duration":"PT1.379354S","correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm-generalizeVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-generalizeNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-generalizePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstoragea81479efb078df"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-generalize"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/operationStatuses/08586461567867002792?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/operationStatuses/08586450204220395837?api-version=2018-05-01 cache-control: - no-cache content-length: @@ -362,7 +362,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:19 GMT + - Tue, 30 Apr 2019 01:07:44 GMT expires: - '-1' pragma: @@ -372,7 +372,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -392,12 +392,12 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A28%3A26Z%20and%20correlationId%20eq%20%27668b1ef7-b720-4e5e-b612-fdae9c97de71%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A07%3A52Z%20and%20correlationId%20eq%20%27ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1%27 response: body: string: '{"value":[]}' @@ -409,7 +409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:27 GMT + - Tue, 30 Apr 2019 01:07:52 GMT expires: - '-1' pragma: @@ -443,28 +443,68 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A28%3A36Z%20and%20correlationId%20eq%20%27668b1ef7-b720-4e5e-b612-fdae9c97de71%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A02Z%20and%20correlationId%20eq%20%27ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"238993a3-afa8-4ecc-97ce-0fa456d11455","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/238993a3-afa8-4ecc-97ce-0fa456d11455/ticks/636910468970169183","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:17.0169183Z","submissionTimestamp":"2019-04-16T21:28:32.0816776Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + string: '{"value":[{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"132aaba0-4744-4f45-9b1e-cd9a45d5f284","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/132aaba0-4744-4f45-9b1e-cd9a45d5f284/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"be455762-dac4-4e72-aba6-d085b6115f5b","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"44bf66e2-8d51-4129-9b71-8dfc14de0c25","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/44bf66e2-8d51-4129-9b71-8dfc14de0c25/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"24066a15-c075-4e26-8696-31caaab3945d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"d6212d61-a9cb-4568-9411-d5eac8f4a072","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/d6212d61-a9cb-4568-9411-d5eac8f4a072/ticks/636921832679076533","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8b1e61c9-c55e-4470-91d0-b1659e8851b9","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"85ed8806-f0af-410a-8c6d-6a13088f7ed1\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.9076533Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"109d92ce-bb7e-41ca-b665-dcc5beae8ff9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/109d92ce-bb7e-41ca-b665-dcc5beae8ff9/ticks/636921832678926165","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"b5f9e47e-be69-47d1-9dbc-abd851b56f43","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31d29813-e066-413f-a41c-f3fda7a77b48\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8926165Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5a26228d-2476-4242-bc17-7263a47413e7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5a26228d-2476-4242-bc17-7263a47413e7/ticks/636921832678626241","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3a008071-81f2-4006-8b81-ae598cd9d67e","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"6eff7e36-2311-46c6-a3c6-2b8885bb215c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b2771ace-6700-4f25-b2ab-e43c31897d00\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8626241Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"cdeb9b80-e9c1-48be-998e-87441a1e8182","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/cdeb9b80-e9c1-48be-998e-87441a1e8182/ticks/636921832678276278","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.8276278Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"2c22fe9c-19e3-4dc1-802b-4242cacd85fb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2c22fe9c-19e3-4dc1-802b-4242cacd85fb/ticks/636921832677826161","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.7826161Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"625e86a9-4ac7-4d7c-acbe-8129696b8e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/625e86a9-4ac7-4d7c-acbe-8129696b8e95/ticks/636921832667126078","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7126078Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6bc6ce06-dac8-436c-9099-31fe0ec48da9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6bc6ce06-dac8-436c-9099-31fe0ec48da9/ticks/636921832667076075","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7076075Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1a3c4b56-f65e-4651-8133-e2767363ebed","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/1a3c4b56-f65e-4651-8133-e2767363ebed/ticks/636921832667026069","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7026069Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1d474f3d-7543-4fd9-a13b-0b8ab051a32c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/1d474f3d-7543-4fd9-a13b-0b8ab051a32c/ticks/636921832666876074","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6876074Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"c5f98b19-14a3-49ed-84d6-047bec4fd211","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/c5f98b19-14a3-49ed-84d6-047bec4fd211/ticks/636921832666276188","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6276188Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '3710' + - '56704' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:37 GMT + - Tue, 30 Apr 2019 01:08:02 GMT expires: - '-1' pragma: @@ -498,71 +538,84 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A28%3A46Z%20and%20correlationId%20eq%20%27668b1ef7-b720-4e5e-b612-fdae9c97de71%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A12Z%20and%20correlationId%20eq%20%27ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a/ticks/636910469060342985","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"6af3c889-a56a-4d42-ac12-950af9650654","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9c36476d-f843-4442-a8f6-45efae83def4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:26.0342985Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"7514da9f-afb9-4647-930e-6d7e069b6a6c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7514da9f-afb9-4647-930e-6d7e069b6a6c/ticks/636910469059742968","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4d85df4d-c94c-43fa-9582-55a94900ed86","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"a5bcd388-617c-4eea-8e41-1144995b1908\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b062219d-69c1-4b16-b4b8-2a2ebd48ea95\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.9742968Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"89218770-733a-4fb6-8016-d2a1de1e1198","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/89218770-733a-4fb6-8016-d2a1de1e1198/ticks/636910469058293000","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.8293Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"2427a658-4900-4f53-8c25-669100f55318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2427a658-4900-4f53-8c25-669100f55318/ticks/636910469057642911","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7642911Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"139f8be1-4b71-4482-bbb8-b044397fec60","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/139f8be1-4b71-4482-bbb8-b044397fec60/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ad1a0f7-cafd-4cf1-9a84-f9b159da47fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"236ebe51-8a13-446a-8c16-581f2ac31123","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/236ebe51-8a13-446a-8c16-581f2ac31123/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"21f69afd-46cb-4d7a-a2c6-d1d2a9d8d427","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"3b4c0088-89d3-4097-85a6-6c849bce7327","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/3b4c0088-89d3-4097-85a6-6c849bce7327/ticks/636921832721420929","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c7312520-940a-4717-8223-ced07c2838a0","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a10110a8-67d7-46b4-8b6d-7f42fc11ebdb\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:52.1420929Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"795d7524-ef67-4e14-9fe4-76dd99c0fbda","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/795d7524-ef67-4e14-9fe4-76dd99c0fbda/ticks/636921832714120841","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:51.4120841Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"132aaba0-4744-4f45-9b1e-cd9a45d5f284","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/132aaba0-4744-4f45-9b1e-cd9a45d5f284/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"be455762-dac4-4e72-aba6-d085b6115f5b","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"471901df-f2c0-46db-85c9-21c971cec0b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/471901df-f2c0-46db-85c9-21c971cec0b8/ticks/636910469055743167","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4498f7ed-785e-42f2-b8c6-f1576d2be918","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ec54ef5f-c2cd-4c6e-a360-dbf67f629da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"44bf66e2-8d51-4129-9b71-8dfc14de0c25","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/44bf66e2-8d51-4129-9b71-8dfc14de0c25/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"24066a15-c075-4e26-8696-31caaab3945d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"d6212d61-a9cb-4568-9411-d5eac8f4a072","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/d6212d61-a9cb-4568-9411-d5eac8f4a072/ticks/636921832679076533","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8b1e61c9-c55e-4470-91d0-b1659e8851b9","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"85ed8806-f0af-410a-8c6d-6a13088f7ed1\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.9076533Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"109d92ce-bb7e-41ca-b665-dcc5beae8ff9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/109d92ce-bb7e-41ca-b665-dcc5beae8ff9/ticks/636921832678926165","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"b5f9e47e-be69-47d1-9dbc-abd851b56f43","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31d29813-e066-413f-a41c-f3fda7a77b48\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.5743167Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"67f5f150-c97a-4e8d-9b94-5be0f5439024","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/67f5f150-c97a-4e8d-9b94-5be0f5439024/ticks/636910469029042960","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.904296Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"fa8edc81-7d51-4aa4-b28f-1babdd72f52a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/fa8edc81-7d51-4aa4-b28f-1babdd72f52a/ticks/636910469028143185","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8143185Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b2b2a680-f30b-41ee-9354-8fc6192987e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/b2b2a680-f30b-41ee-9354-8fc6192987e7/ticks/636910469026893150","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.689315Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a9c3efab-48ea-4721-852e-af1edc38200a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/a9c3efab-48ea-4721-852e-af1edc38200a/ticks/636910469003019189","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8926165Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5a26228d-2476-4242-bc17-7263a47413e7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5a26228d-2476-4242-bc17-7263a47413e7/ticks/636921832678626241","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3a008071-81f2-4006-8b81-ae598cd9d67e","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"6eff7e36-2311-46c6-a3c6-2b8885bb215c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b2771ace-6700-4f25-b2ab-e43c31897d00\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8626241Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"cdeb9b80-e9c1-48be-998e-87441a1e8182","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/cdeb9b80-e9c1-48be-998e-87441a1e8182/ticks/636921832678276278","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.8276278Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"2c22fe9c-19e3-4dc1-802b-4242cacd85fb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2c22fe9c-19e3-4dc1-802b-4242cacd85fb/ticks/636921832677826161","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.7826161Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"625e86a9-4ac7-4d7c-acbe-8129696b8e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/625e86a9-4ac7-4d7c-acbe-8129696b8e95/ticks/636921832667126078","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7126078Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6bc6ce06-dac8-436c-9099-31fe0ec48da9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6bc6ce06-dac8-436c-9099-31fe0ec48da9/ticks/636921832667076075","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7076075Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1a3c4b56-f65e-4651-8133-e2767363ebed","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/1a3c4b56-f65e-4651-8133-e2767363ebed/ticks/636921832667026069","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7026069Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1d474f3d-7543-4fd9-a13b-0b8ab051a32c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/1d474f3d-7543-4fd9-a13b-0b8ab051a32c/ticks/636921832666876074","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6876074Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"c5f98b19-14a3-49ed-84d6-047bec4fd211","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/c5f98b19-14a3-49ed-84d6-047bec4fd211/ticks/636921832666276188","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6276188Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"09665fba-709a-4e82-ba96-645260173169","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/09665fba-709a-4e82-ba96-645260173169/ticks/636921832650753635","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:20.3019189Z","submissionTimestamp":"2019-04-16T21:28:42.1017349Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"238993a3-afa8-4ecc-97ce-0fa456d11455","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/238993a3-afa8-4ecc-97ce-0fa456d11455/ticks/636910468970169183","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:17.0169183Z","submissionTimestamp":"2019-04-16T21:28:32.0816776Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.0753635Z","submissionTimestamp":"2019-04-30T01:08:02.1041047Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"90ea0f6c-5ea6-4d0a-ae9b-b98787a51464","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/90ea0f6c-5ea6-4d0a-ae9b-b98787a51464/ticks/636921832614653662","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.4653662Z","submissionTimestamp":"2019-04-30T01:08:02.1031048Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '56106' + - '74587' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:47 GMT + - Tue, 30 Apr 2019 01:08:13 GMT expires: - '-1' pragma: @@ -594,10 +647,10 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461567867002792?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450204220395837?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -609,7 +662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:49 GMT + - Tue, 30 Apr 2019 01:08:15 GMT expires: - '-1' pragma: @@ -639,93 +692,93 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A28%3A57Z%20and%20correlationId%20eq%20%27668b1ef7-b720-4e5e-b612-fdae9c97de71%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A23Z%20and%20correlationId%20eq%20%27ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"097114d2-77f4-4c78-b329-5a3ba4765f16","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/097114d2-77f4-4c78-b329-5a3ba4765f16/ticks/636910469132014106","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d8af33f-e55a-451d-84a0-854923beab6c","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"1fc74cc3-94c5-4e5b-a2b4-d6e2c566d480\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:33.2014106Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"928586ba-a761-45b7-86d9-d4de73a8fe58","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/928586ba-a761-45b7-86d9-d4de73a8fe58/ticks/636910469117869078","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"bd240a5f-71fb-4485-8391-ae90d1d1d34f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.7869078Z","submissionTimestamp":"2019-04-16T21:28:56.0630574Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b9584c39-1722-44ba-b97c-5bf9bf2ee080","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/b9584c39-1722-44ba-b97c-5bf9bf2ee080/ticks/636910469116552928","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.6552928Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"63872d41-c763-4193-87be-5d1b03ef2b8b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/63872d41-c763-4193-87be-5d1b03ef2b8b/ticks/636910469116293670","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c674873a-b35d-47c7-a9f8-4826e69deed5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.629367Z","submissionTimestamp":"2019-04-16T21:28:57.0664235Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a3d3d4bf-8ad0-4f81-be69-8a810edd3372","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/a3d3d4bf-8ad0-4f81-be69-8a810edd3372/ticks/636910469113828882","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d504fa4f-a81c-4a9c-8e63-f667f3d9bd24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.3828882Z","submissionTimestamp":"2019-04-16T21:28:55.0635303Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a/ticks/636910469060342985","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"6af3c889-a56a-4d42-ac12-950af9650654","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9c36476d-f843-4442-a8f6-45efae83def4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:26.0342985Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"7514da9f-afb9-4647-930e-6d7e069b6a6c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7514da9f-afb9-4647-930e-6d7e069b6a6c/ticks/636910469059742968","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4d85df4d-c94c-43fa-9582-55a94900ed86","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"a5bcd388-617c-4eea-8e41-1144995b1908\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b062219d-69c1-4b16-b4b8-2a2ebd48ea95\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.9742968Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"89218770-733a-4fb6-8016-d2a1de1e1198","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/89218770-733a-4fb6-8016-d2a1de1e1198/ticks/636910469058293000","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.8293Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"2427a658-4900-4f53-8c25-669100f55318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2427a658-4900-4f53-8c25-669100f55318/ticks/636910469057642911","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7642911Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"139f8be1-4b71-4482-bbb8-b044397fec60","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/139f8be1-4b71-4482-bbb8-b044397fec60/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ad1a0f7-cafd-4cf1-9a84-f9b159da47fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"236ebe51-8a13-446a-8c16-581f2ac31123","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/236ebe51-8a13-446a-8c16-581f2ac31123/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"21f69afd-46cb-4d7a-a2c6-d1d2a9d8d427","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"bba23167-30a0-4b46-9baa-57d6b70ff0c3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/bba23167-30a0-4b46-9baa-57d6b70ff0c3/ticks/636921832759624829","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"6f872ca8-3711-45e1-bea6-659924daa8e6","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9624829Z","submissionTimestamp":"2019-04-30T01:08:14.4883977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6d180780-82e6-4898-a527-a21d8f868a71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6d180780-82e6-4898-a527-a21d8f868a71/ticks/636921832743513431","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a5d44a67-2dc5-4422-a3d7-b6911dad1e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:54.3513431Z","submissionTimestamp":"2019-04-30T01:08:19.1202326Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"7061f230-4bb4-49fd-bbab-8500ab1c6fb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7061f230-4bb4-49fd-bbab-8500ab1c6fb8/ticks/636921832722516079","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f61b0cfb-953f-4bfe-a010-156913f5b975","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.2516079Z","submissionTimestamp":"2019-04-30T01:08:12.9758639Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"3b4c0088-89d3-4097-85a6-6c849bce7327","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/3b4c0088-89d3-4097-85a6-6c849bce7327/ticks/636921832721420929","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c7312520-940a-4717-8223-ced07c2838a0","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a10110a8-67d7-46b4-8b6d-7f42fc11ebdb\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:52.1420929Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"795d7524-ef67-4e14-9fe4-76dd99c0fbda","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/795d7524-ef67-4e14-9fe4-76dd99c0fbda/ticks/636921832714120841","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:51.4120841Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"132aaba0-4744-4f45-9b1e-cd9a45d5f284","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/132aaba0-4744-4f45-9b1e-cd9a45d5f284/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"be455762-dac4-4e72-aba6-d085b6115f5b","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"471901df-f2c0-46db-85c9-21c971cec0b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/471901df-f2c0-46db-85c9-21c971cec0b8/ticks/636910469055743167","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4498f7ed-785e-42f2-b8c6-f1576d2be918","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ec54ef5f-c2cd-4c6e-a360-dbf67f629da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"44bf66e2-8d51-4129-9b71-8dfc14de0c25","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/44bf66e2-8d51-4129-9b71-8dfc14de0c25/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"24066a15-c075-4e26-8696-31caaab3945d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"d6212d61-a9cb-4568-9411-d5eac8f4a072","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/d6212d61-a9cb-4568-9411-d5eac8f4a072/ticks/636921832679076533","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8b1e61c9-c55e-4470-91d0-b1659e8851b9","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"85ed8806-f0af-410a-8c6d-6a13088f7ed1\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.9076533Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"109d92ce-bb7e-41ca-b665-dcc5beae8ff9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/109d92ce-bb7e-41ca-b665-dcc5beae8ff9/ticks/636921832678926165","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"b5f9e47e-be69-47d1-9dbc-abd851b56f43","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31d29813-e066-413f-a41c-f3fda7a77b48\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.5743167Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"67f5f150-c97a-4e8d-9b94-5be0f5439024","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/67f5f150-c97a-4e8d-9b94-5be0f5439024/ticks/636910469029042960","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.904296Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b59b62a3-ada6-43c1-834c-17a7c4efd943","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/b59b62a3-ada6-43c1-834c-17a7c4efd943/ticks/636910469028942828","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8942828Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"fa8edc81-7d51-4aa4-b28f-1babdd72f52a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/fa8edc81-7d51-4aa4-b28f-1babdd72f52a/ticks/636910469028143185","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8143185Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b2b2a680-f30b-41ee-9354-8fc6192987e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/b2b2a680-f30b-41ee-9354-8fc6192987e7/ticks/636910469026893150","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.689315Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"0905be32-d5aa-4d5f-a49a-38bf37099e15","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/0905be32-d5aa-4d5f-a49a-38bf37099e15/ticks/636910469025343191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.5343191Z","submissionTimestamp":"2019-04-16T21:28:44.1113246Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a9c3efab-48ea-4721-852e-af1edc38200a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/a9c3efab-48ea-4721-852e-af1edc38200a/ticks/636910469003019189","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8926165Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5a26228d-2476-4242-bc17-7263a47413e7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5a26228d-2476-4242-bc17-7263a47413e7/ticks/636921832678626241","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3a008071-81f2-4006-8b81-ae598cd9d67e","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"6eff7e36-2311-46c6-a3c6-2b8885bb215c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b2771ace-6700-4f25-b2ab-e43c31897d00\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8626241Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"cdeb9b80-e9c1-48be-998e-87441a1e8182","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/cdeb9b80-e9c1-48be-998e-87441a1e8182/ticks/636921832678276278","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.8276278Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"2c22fe9c-19e3-4dc1-802b-4242cacd85fb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2c22fe9c-19e3-4dc1-802b-4242cacd85fb/ticks/636921832677826161","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.7826161Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"625e86a9-4ac7-4d7c-acbe-8129696b8e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/625e86a9-4ac7-4d7c-acbe-8129696b8e95/ticks/636921832667126078","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7126078Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6bc6ce06-dac8-436c-9099-31fe0ec48da9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6bc6ce06-dac8-436c-9099-31fe0ec48da9/ticks/636921832667076075","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7076075Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1a3c4b56-f65e-4651-8133-e2767363ebed","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/1a3c4b56-f65e-4651-8133-e2767363ebed/ticks/636921832667026069","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7026069Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1d474f3d-7543-4fd9-a13b-0b8ab051a32c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/1d474f3d-7543-4fd9-a13b-0b8ab051a32c/ticks/636921832666876074","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6876074Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"c5f98b19-14a3-49ed-84d6-047bec4fd211","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/c5f98b19-14a3-49ed-84d6-047bec4fd211/ticks/636921832666276188","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6276188Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"09665fba-709a-4e82-ba96-645260173169","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/09665fba-709a-4e82-ba96-645260173169/ticks/636921832650753635","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:20.3019189Z","submissionTimestamp":"2019-04-16T21:28:42.1017349Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"238993a3-afa8-4ecc-97ce-0fa456d11455","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/238993a3-afa8-4ecc-97ce-0fa456d11455/ticks/636910468970169183","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:17.0169183Z","submissionTimestamp":"2019-04-16T21:28:32.0816776Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.0753635Z","submissionTimestamp":"2019-04-30T01:08:02.1041047Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"90ea0f6c-5ea6-4d0a-ae9b-b98787a51464","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/90ea0f6c-5ea6-4d0a-ae9b-b98787a51464/ticks/636921832614653662","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.4653662Z","submissionTimestamp":"2019-04-30T01:08:02.1031048Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '85088' + - '85245' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:28:58 GMT + - Tue, 30 Apr 2019 01:08:23 GMT expires: - '-1' pragma: @@ -759,93 +812,105 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A29%3A07Z%20and%20correlationId%20eq%20%27668b1ef7-b720-4e5e-b612-fdae9c97de71%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A33Z%20and%20correlationId%20eq%20%27ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"097114d2-77f4-4c78-b329-5a3ba4765f16","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/097114d2-77f4-4c78-b329-5a3ba4765f16/ticks/636910469132014106","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d8af33f-e55a-451d-84a0-854923beab6c","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"1fc74cc3-94c5-4e5b-a2b4-d6e2c566d480\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:33.2014106Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"928586ba-a761-45b7-86d9-d4de73a8fe58","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/928586ba-a761-45b7-86d9-d4de73a8fe58/ticks/636910469117869078","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"bd240a5f-71fb-4485-8391-ae90d1d1d34f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.7869078Z","submissionTimestamp":"2019-04-16T21:28:56.0630574Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b9584c39-1722-44ba-b97c-5bf9bf2ee080","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/b9584c39-1722-44ba-b97c-5bf9bf2ee080/ticks/636910469116552928","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.6552928Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"63872d41-c763-4193-87be-5d1b03ef2b8b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/63872d41-c763-4193-87be-5d1b03ef2b8b/ticks/636910469116293670","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c674873a-b35d-47c7-a9f8-4826e69deed5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.629367Z","submissionTimestamp":"2019-04-16T21:28:57.0664235Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a3d3d4bf-8ad0-4f81-be69-8a810edd3372","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/a3d3d4bf-8ad0-4f81-be69-8a810edd3372/ticks/636910469113828882","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d504fa4f-a81c-4a9c-8e63-f667f3d9bd24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.3828882Z","submissionTimestamp":"2019-04-16T21:28:55.0635303Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a/ticks/636910469060342985","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"6af3c889-a56a-4d42-ac12-950af9650654","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9c36476d-f843-4442-a8f6-45efae83def4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:26.0342985Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"7514da9f-afb9-4647-930e-6d7e069b6a6c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7514da9f-afb9-4647-930e-6d7e069b6a6c/ticks/636910469059742968","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4d85df4d-c94c-43fa-9582-55a94900ed86","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"a5bcd388-617c-4eea-8e41-1144995b1908\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b062219d-69c1-4b16-b4b8-2a2ebd48ea95\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.9742968Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"89218770-733a-4fb6-8016-d2a1de1e1198","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/89218770-733a-4fb6-8016-d2a1de1e1198/ticks/636910469058293000","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.8293Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"2427a658-4900-4f53-8c25-669100f55318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2427a658-4900-4f53-8c25-669100f55318/ticks/636910469057642911","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7642911Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"139f8be1-4b71-4482-bbb8-b044397fec60","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/139f8be1-4b71-4482-bbb8-b044397fec60/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ad1a0f7-cafd-4cf1-9a84-f9b159da47fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"236ebe51-8a13-446a-8c16-581f2ac31123","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/236ebe51-8a13-446a-8c16-581f2ac31123/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"21f69afd-46cb-4d7a-a2c6-d1d2a9d8d427","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"19bf5490-0d54-460a-80e9-148af0ba3902","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1f14e042-be04-45cc-9635-cdbaefd9c87b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/19bf5490-0d54-460a-80e9-148af0ba3902/ticks/636921832876236229","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f95c3e29-08af-4057-beaf-4f3b755d9113"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:07.6236229Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"75bb01e2-24fd-4034-8694-4655befa2bcd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/75bb01e2-24fd-4034-8694-4655befa2bcd/ticks/636921832875485901","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:07.5485901Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1614b230-9792-4108-a802-bd9db09c9f43","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1f14e042-be04-45cc-9635-cdbaefd9c87b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/1614b230-9792-4108-a802-bd9db09c9f43/ticks/636921832864286252","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.4286252Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5e09f9a9-bd22-4b7e-8900-7f10e78ea838","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/5e09f9a9-bd22-4b7e-8900-7f10e78ea838/ticks/636921832855552059","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"a0c275c1-2509-48da-b9a4-c5eb335694ef","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:05.5552059Z","submissionTimestamp":"2019-04-30T01:08:29.1557925Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"bba23167-30a0-4b46-9baa-57d6b70ff0c3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/bba23167-30a0-4b46-9baa-57d6b70ff0c3/ticks/636921832759624829","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"6f872ca8-3711-45e1-bea6-659924daa8e6","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9624829Z","submissionTimestamp":"2019-04-30T01:08:14.4883977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6d180780-82e6-4898-a527-a21d8f868a71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6d180780-82e6-4898-a527-a21d8f868a71/ticks/636921832743513431","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a5d44a67-2dc5-4422-a3d7-b6911dad1e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:54.3513431Z","submissionTimestamp":"2019-04-30T01:08:19.1202326Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"7061f230-4bb4-49fd-bbab-8500ab1c6fb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7061f230-4bb4-49fd-bbab-8500ab1c6fb8/ticks/636921832722516079","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f61b0cfb-953f-4bfe-a010-156913f5b975","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.2516079Z","submissionTimestamp":"2019-04-30T01:08:12.9758639Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"3b4c0088-89d3-4097-85a6-6c849bce7327","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/3b4c0088-89d3-4097-85a6-6c849bce7327/ticks/636921832721420929","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c7312520-940a-4717-8223-ced07c2838a0","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a10110a8-67d7-46b4-8b6d-7f42fc11ebdb\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:52.1420929Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"795d7524-ef67-4e14-9fe4-76dd99c0fbda","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/795d7524-ef67-4e14-9fe4-76dd99c0fbda/ticks/636921832714120841","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:51.4120841Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"132aaba0-4744-4f45-9b1e-cd9a45d5f284","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/132aaba0-4744-4f45-9b1e-cd9a45d5f284/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"be455762-dac4-4e72-aba6-d085b6115f5b","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"471901df-f2c0-46db-85c9-21c971cec0b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/471901df-f2c0-46db-85c9-21c971cec0b8/ticks/636910469055743167","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4498f7ed-785e-42f2-b8c6-f1576d2be918","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ec54ef5f-c2cd-4c6e-a360-dbf67f629da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"44bf66e2-8d51-4129-9b71-8dfc14de0c25","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/44bf66e2-8d51-4129-9b71-8dfc14de0c25/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"24066a15-c075-4e26-8696-31caaab3945d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"d6212d61-a9cb-4568-9411-d5eac8f4a072","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/d6212d61-a9cb-4568-9411-d5eac8f4a072/ticks/636921832679076533","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8b1e61c9-c55e-4470-91d0-b1659e8851b9","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"85ed8806-f0af-410a-8c6d-6a13088f7ed1\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.9076533Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"109d92ce-bb7e-41ca-b665-dcc5beae8ff9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/109d92ce-bb7e-41ca-b665-dcc5beae8ff9/ticks/636921832678926165","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"b5f9e47e-be69-47d1-9dbc-abd851b56f43","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31d29813-e066-413f-a41c-f3fda7a77b48\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.5743167Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"67f5f150-c97a-4e8d-9b94-5be0f5439024","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/67f5f150-c97a-4e8d-9b94-5be0f5439024/ticks/636910469029042960","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.904296Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b59b62a3-ada6-43c1-834c-17a7c4efd943","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/b59b62a3-ada6-43c1-834c-17a7c4efd943/ticks/636910469028942828","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8942828Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"fa8edc81-7d51-4aa4-b28f-1babdd72f52a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/fa8edc81-7d51-4aa4-b28f-1babdd72f52a/ticks/636910469028143185","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8143185Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b2b2a680-f30b-41ee-9354-8fc6192987e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/b2b2a680-f30b-41ee-9354-8fc6192987e7/ticks/636910469026893150","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.689315Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"0905be32-d5aa-4d5f-a49a-38bf37099e15","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/0905be32-d5aa-4d5f-a49a-38bf37099e15/ticks/636910469025343191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.5343191Z","submissionTimestamp":"2019-04-16T21:28:44.1113246Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a9c3efab-48ea-4721-852e-af1edc38200a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/a9c3efab-48ea-4721-852e-af1edc38200a/ticks/636910469003019189","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8926165Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5a26228d-2476-4242-bc17-7263a47413e7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5a26228d-2476-4242-bc17-7263a47413e7/ticks/636921832678626241","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3a008071-81f2-4006-8b81-ae598cd9d67e","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"6eff7e36-2311-46c6-a3c6-2b8885bb215c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b2771ace-6700-4f25-b2ab-e43c31897d00\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8626241Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"cdeb9b80-e9c1-48be-998e-87441a1e8182","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/cdeb9b80-e9c1-48be-998e-87441a1e8182/ticks/636921832678276278","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.8276278Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"2c22fe9c-19e3-4dc1-802b-4242cacd85fb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2c22fe9c-19e3-4dc1-802b-4242cacd85fb/ticks/636921832677826161","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.7826161Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"625e86a9-4ac7-4d7c-acbe-8129696b8e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/625e86a9-4ac7-4d7c-acbe-8129696b8e95/ticks/636921832667126078","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7126078Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6bc6ce06-dac8-436c-9099-31fe0ec48da9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6bc6ce06-dac8-436c-9099-31fe0ec48da9/ticks/636921832667076075","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7076075Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1a3c4b56-f65e-4651-8133-e2767363ebed","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/1a3c4b56-f65e-4651-8133-e2767363ebed/ticks/636921832667026069","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7026069Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1d474f3d-7543-4fd9-a13b-0b8ab051a32c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/1d474f3d-7543-4fd9-a13b-0b8ab051a32c/ticks/636921832666876074","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6876074Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"c5f98b19-14a3-49ed-84d6-047bec4fd211","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/c5f98b19-14a3-49ed-84d6-047bec4fd211/ticks/636921832666276188","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6276188Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"09665fba-709a-4e82-ba96-645260173169","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/09665fba-709a-4e82-ba96-645260173169/ticks/636921832650753635","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:20.3019189Z","submissionTimestamp":"2019-04-16T21:28:42.1017349Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"238993a3-afa8-4ecc-97ce-0fa456d11455","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/238993a3-afa8-4ecc-97ce-0fa456d11455/ticks/636910468970169183","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:17.0169183Z","submissionTimestamp":"2019-04-16T21:28:32.0816776Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.0753635Z","submissionTimestamp":"2019-04-30T01:08:02.1041047Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"90ea0f6c-5ea6-4d0a-ae9b-b98787a51464","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/90ea0f6c-5ea6-4d0a-ae9b-b98787a51464/ticks/636921832614653662","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.4653662Z","submissionTimestamp":"2019-04-30T01:08:02.1031048Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '85088' + - '99742' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:29:08 GMT + - Tue, 30 Apr 2019 01:08:33 GMT expires: - '-1' pragma: @@ -879,105 +944,105 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A29%3A18Z%20and%20correlationId%20eq%20%27668b1ef7-b720-4e5e-b612-fdae9c97de71%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A44Z%20and%20correlationId%20eq%20%27ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"77ea0021-3a19-4e9a-aa07-85572af1935c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"88ecdad6-5671-4508-bc4e-3b436848ee90","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/77ea0021-3a19-4e9a-aa07-85572af1935c/ticks/636910469348199667","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7c9b6ec-8e5b-47bd-a0e7-0702a3769fea"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:54.8199667Z","submissionTimestamp":"2019-04-16T21:29:12.1564131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"f19aeff6-9cfb-4c58-afca-5b13fdceb7bb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f19aeff6-9cfb-4c58-afca-5b13fdceb7bb/ticks/636910469345949593","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:54.5949593Z","submissionTimestamp":"2019-04-16T21:29:12.1564131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"5c274548-d109-4fe3-a27e-9af61d448062","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"88ecdad6-5671-4508-bc4e-3b436848ee90","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/5c274548-d109-4fe3-a27e-9af61d448062/ticks/636910469318499511","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:51.8499511Z","submissionTimestamp":"2019-04-16T21:29:12.1554115Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"5be0c566-110d-4c1a-9b5d-794e052c590d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/5be0c566-110d-4c1a-9b5d-794e052c590d/ticks/636910469249862231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"d90ba5e9-a8af-4209-b667-aedac9ad2990","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:44.9862231Z","submissionTimestamp":"2019-04-16T21:29:06.1445893Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"097114d2-77f4-4c78-b329-5a3ba4765f16","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/097114d2-77f4-4c78-b329-5a3ba4765f16/ticks/636910469132014106","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d8af33f-e55a-451d-84a0-854923beab6c","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"1fc74cc3-94c5-4e5b-a2b4-d6e2c566d480\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:33.2014106Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"928586ba-a761-45b7-86d9-d4de73a8fe58","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/928586ba-a761-45b7-86d9-d4de73a8fe58/ticks/636910469117869078","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"bd240a5f-71fb-4485-8391-ae90d1d1d34f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.7869078Z","submissionTimestamp":"2019-04-16T21:28:56.0630574Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b9584c39-1722-44ba-b97c-5bf9bf2ee080","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/b9584c39-1722-44ba-b97c-5bf9bf2ee080/ticks/636910469116552928","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.6552928Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"63872d41-c763-4193-87be-5d1b03ef2b8b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/63872d41-c763-4193-87be-5d1b03ef2b8b/ticks/636910469116293670","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c674873a-b35d-47c7-a9f8-4826e69deed5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.629367Z","submissionTimestamp":"2019-04-16T21:28:57.0664235Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a3d3d4bf-8ad0-4f81-be69-8a810edd3372","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/a3d3d4bf-8ad0-4f81-be69-8a810edd3372/ticks/636910469113828882","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d504fa4f-a81c-4a9c-8e63-f667f3d9bd24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.3828882Z","submissionTimestamp":"2019-04-16T21:28:55.0635303Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a/ticks/636910469060342985","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"6af3c889-a56a-4d42-ac12-950af9650654","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9c36476d-f843-4442-a8f6-45efae83def4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:26.0342985Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"7514da9f-afb9-4647-930e-6d7e069b6a6c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7514da9f-afb9-4647-930e-6d7e069b6a6c/ticks/636910469059742968","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4d85df4d-c94c-43fa-9582-55a94900ed86","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"a5bcd388-617c-4eea-8e41-1144995b1908\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b062219d-69c1-4b16-b4b8-2a2ebd48ea95\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.9742968Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"89218770-733a-4fb6-8016-d2a1de1e1198","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/89218770-733a-4fb6-8016-d2a1de1e1198/ticks/636910469058293000","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.8293Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"2427a658-4900-4f53-8c25-669100f55318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2427a658-4900-4f53-8c25-669100f55318/ticks/636910469057642911","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7642911Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"139f8be1-4b71-4482-bbb8-b044397fec60","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/139f8be1-4b71-4482-bbb8-b044397fec60/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ad1a0f7-cafd-4cf1-9a84-f9b159da47fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"236ebe51-8a13-446a-8c16-581f2ac31123","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/236ebe51-8a13-446a-8c16-581f2ac31123/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"21f69afd-46cb-4d7a-a2c6-d1d2a9d8d427","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"19bf5490-0d54-460a-80e9-148af0ba3902","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1f14e042-be04-45cc-9635-cdbaefd9c87b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/19bf5490-0d54-460a-80e9-148af0ba3902/ticks/636921832876236229","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f95c3e29-08af-4057-beaf-4f3b755d9113"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:07.6236229Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"75bb01e2-24fd-4034-8694-4655befa2bcd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/75bb01e2-24fd-4034-8694-4655befa2bcd/ticks/636921832875485901","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:07.5485901Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1614b230-9792-4108-a802-bd9db09c9f43","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1f14e042-be04-45cc-9635-cdbaefd9c87b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/1614b230-9792-4108-a802-bd9db09c9f43/ticks/636921832864286252","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.4286252Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5e09f9a9-bd22-4b7e-8900-7f10e78ea838","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/5e09f9a9-bd22-4b7e-8900-7f10e78ea838/ticks/636921832855552059","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"a0c275c1-2509-48da-b9a4-c5eb335694ef","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:05.5552059Z","submissionTimestamp":"2019-04-30T01:08:29.1557925Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"bba23167-30a0-4b46-9baa-57d6b70ff0c3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/bba23167-30a0-4b46-9baa-57d6b70ff0c3/ticks/636921832759624829","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"6f872ca8-3711-45e1-bea6-659924daa8e6","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9624829Z","submissionTimestamp":"2019-04-30T01:08:14.4883977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6d180780-82e6-4898-a527-a21d8f868a71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6d180780-82e6-4898-a527-a21d8f868a71/ticks/636921832743513431","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a5d44a67-2dc5-4422-a3d7-b6911dad1e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:54.3513431Z","submissionTimestamp":"2019-04-30T01:08:19.1202326Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"7061f230-4bb4-49fd-bbab-8500ab1c6fb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7061f230-4bb4-49fd-bbab-8500ab1c6fb8/ticks/636921832722516079","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f61b0cfb-953f-4bfe-a010-156913f5b975","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.2516079Z","submissionTimestamp":"2019-04-30T01:08:12.9758639Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"3b4c0088-89d3-4097-85a6-6c849bce7327","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/3b4c0088-89d3-4097-85a6-6c849bce7327/ticks/636921832721420929","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c7312520-940a-4717-8223-ced07c2838a0","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a10110a8-67d7-46b4-8b6d-7f42fc11ebdb\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:52.1420929Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"795d7524-ef67-4e14-9fe4-76dd99c0fbda","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/795d7524-ef67-4e14-9fe4-76dd99c0fbda/ticks/636921832714120841","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:51.4120841Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"132aaba0-4744-4f45-9b1e-cd9a45d5f284","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/132aaba0-4744-4f45-9b1e-cd9a45d5f284/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"be455762-dac4-4e72-aba6-d085b6115f5b","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"471901df-f2c0-46db-85c9-21c971cec0b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/471901df-f2c0-46db-85c9-21c971cec0b8/ticks/636910469055743167","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4498f7ed-785e-42f2-b8c6-f1576d2be918","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ec54ef5f-c2cd-4c6e-a360-dbf67f629da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"44bf66e2-8d51-4129-9b71-8dfc14de0c25","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/44bf66e2-8d51-4129-9b71-8dfc14de0c25/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"24066a15-c075-4e26-8696-31caaab3945d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"d6212d61-a9cb-4568-9411-d5eac8f4a072","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/d6212d61-a9cb-4568-9411-d5eac8f4a072/ticks/636921832679076533","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8b1e61c9-c55e-4470-91d0-b1659e8851b9","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"85ed8806-f0af-410a-8c6d-6a13088f7ed1\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.9076533Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"109d92ce-bb7e-41ca-b665-dcc5beae8ff9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/109d92ce-bb7e-41ca-b665-dcc5beae8ff9/ticks/636921832678926165","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"b5f9e47e-be69-47d1-9dbc-abd851b56f43","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31d29813-e066-413f-a41c-f3fda7a77b48\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.5743167Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"67f5f150-c97a-4e8d-9b94-5be0f5439024","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/67f5f150-c97a-4e8d-9b94-5be0f5439024/ticks/636910469029042960","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.904296Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b59b62a3-ada6-43c1-834c-17a7c4efd943","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/b59b62a3-ada6-43c1-834c-17a7c4efd943/ticks/636910469028942828","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8942828Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"fa8edc81-7d51-4aa4-b28f-1babdd72f52a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/fa8edc81-7d51-4aa4-b28f-1babdd72f52a/ticks/636910469028143185","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8143185Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b2b2a680-f30b-41ee-9354-8fc6192987e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/b2b2a680-f30b-41ee-9354-8fc6192987e7/ticks/636910469026893150","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.689315Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"0905be32-d5aa-4d5f-a49a-38bf37099e15","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/0905be32-d5aa-4d5f-a49a-38bf37099e15/ticks/636910469025343191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.5343191Z","submissionTimestamp":"2019-04-16T21:28:44.1113246Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a9c3efab-48ea-4721-852e-af1edc38200a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/a9c3efab-48ea-4721-852e-af1edc38200a/ticks/636910469003019189","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8926165Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5a26228d-2476-4242-bc17-7263a47413e7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5a26228d-2476-4242-bc17-7263a47413e7/ticks/636921832678626241","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3a008071-81f2-4006-8b81-ae598cd9d67e","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"6eff7e36-2311-46c6-a3c6-2b8885bb215c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b2771ace-6700-4f25-b2ab-e43c31897d00\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8626241Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"cdeb9b80-e9c1-48be-998e-87441a1e8182","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/cdeb9b80-e9c1-48be-998e-87441a1e8182/ticks/636921832678276278","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.8276278Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"2c22fe9c-19e3-4dc1-802b-4242cacd85fb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2c22fe9c-19e3-4dc1-802b-4242cacd85fb/ticks/636921832677826161","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.7826161Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"625e86a9-4ac7-4d7c-acbe-8129696b8e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/625e86a9-4ac7-4d7c-acbe-8129696b8e95/ticks/636921832667126078","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7126078Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6bc6ce06-dac8-436c-9099-31fe0ec48da9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6bc6ce06-dac8-436c-9099-31fe0ec48da9/ticks/636921832667076075","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7076075Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1a3c4b56-f65e-4651-8133-e2767363ebed","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/1a3c4b56-f65e-4651-8133-e2767363ebed/ticks/636921832667026069","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7026069Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1d474f3d-7543-4fd9-a13b-0b8ab051a32c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/1d474f3d-7543-4fd9-a13b-0b8ab051a32c/ticks/636921832666876074","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6876074Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"c5f98b19-14a3-49ed-84d6-047bec4fd211","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/c5f98b19-14a3-49ed-84d6-047bec4fd211/ticks/636921832666276188","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6276188Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"09665fba-709a-4e82-ba96-645260173169","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/09665fba-709a-4e82-ba96-645260173169/ticks/636921832650753635","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:20.3019189Z","submissionTimestamp":"2019-04-16T21:28:42.1017349Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"238993a3-afa8-4ecc-97ce-0fa456d11455","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/238993a3-afa8-4ecc-97ce-0fa456d11455/ticks/636910468970169183","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:17.0169183Z","submissionTimestamp":"2019-04-16T21:28:32.0816776Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.0753635Z","submissionTimestamp":"2019-04-30T01:08:02.1041047Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"90ea0f6c-5ea6-4d0a-ae9b-b98787a51464","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/90ea0f6c-5ea6-4d0a-ae9b-b98787a51464/ticks/636921832614653662","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.4653662Z","submissionTimestamp":"2019-04-30T01:08:02.1031048Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '99577' + - '99742' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:29:19 GMT + - Tue, 30 Apr 2019 01:08:43 GMT expires: - '-1' pragma: @@ -1009,10 +1074,10 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461567867002792?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450204220395837?api-version=2018-05-01 response: body: string: '{"status":"Running"}' @@ -1024,7 +1089,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:29:20 GMT + - Tue, 30 Apr 2019 01:08:45 GMT expires: - '-1' pragma: @@ -1054,109 +1119,109 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A29%3A28Z%20and%20correlationId%20eq%20%27668b1ef7-b720-4e5e-b612-fdae9c97de71%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A08%3A54Z%20and%20correlationId%20eq%20%27ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"9b3caea3-99ef-462c-b8e8-801f2d9adc91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/9b3caea3-99ef-462c-b8e8-801f2d9adc91/ticks/636910469466637237","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"c77db4e2-4535-4537-80b4-1009213e2912","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"f5e8686b-490f-4122-9f09-d7a1cab9e421","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f5e8686b-490f-4122-9f09-d7a1cab9e421/ticks/636921832999553411","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a0f7fb93-3432-4e8e-b963-a52890f56202","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:29:06.6637237Z","submissionTimestamp":"2019-04-16T21:29:21.0839286Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"77ea0021-3a19-4e9a-aa07-85572af1935c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"88ecdad6-5671-4508-bc4e-3b436848ee90","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/77ea0021-3a19-4e9a-aa07-85572af1935c/ticks/636910469348199667","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7c9b6ec-8e5b-47bd-a0e7-0702a3769fea"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:54.8199667Z","submissionTimestamp":"2019-04-16T21:29:12.1564131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"f19aeff6-9cfb-4c58-afca-5b13fdceb7bb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f19aeff6-9cfb-4c58-afca-5b13fdceb7bb/ticks/636910469345949593","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:54.5949593Z","submissionTimestamp":"2019-04-16T21:29:12.1564131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"5c274548-d109-4fe3-a27e-9af61d448062","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"88ecdad6-5671-4508-bc4e-3b436848ee90","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/5c274548-d109-4fe3-a27e-9af61d448062/ticks/636910469318499511","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:51.8499511Z","submissionTimestamp":"2019-04-16T21:29:12.1554115Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"5be0c566-110d-4c1a-9b5d-794e052c590d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/5be0c566-110d-4c1a-9b5d-794e052c590d/ticks/636910469249862231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"d90ba5e9-a8af-4209-b667-aedac9ad2990","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:44.9862231Z","submissionTimestamp":"2019-04-16T21:29:06.1445893Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"097114d2-77f4-4c78-b329-5a3ba4765f16","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/097114d2-77f4-4c78-b329-5a3ba4765f16/ticks/636910469132014106","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d8af33f-e55a-451d-84a0-854923beab6c","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"1fc74cc3-94c5-4e5b-a2b4-d6e2c566d480\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:33.2014106Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"928586ba-a761-45b7-86d9-d4de73a8fe58","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/928586ba-a761-45b7-86d9-d4de73a8fe58/ticks/636910469117869078","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"bd240a5f-71fb-4485-8391-ae90d1d1d34f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.7869078Z","submissionTimestamp":"2019-04-16T21:28:56.0630574Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b9584c39-1722-44ba-b97c-5bf9bf2ee080","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/b9584c39-1722-44ba-b97c-5bf9bf2ee080/ticks/636910469116552928","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.6552928Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"63872d41-c763-4193-87be-5d1b03ef2b8b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/63872d41-c763-4193-87be-5d1b03ef2b8b/ticks/636910469116293670","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c674873a-b35d-47c7-a9f8-4826e69deed5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.629367Z","submissionTimestamp":"2019-04-16T21:28:57.0664235Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a3d3d4bf-8ad0-4f81-be69-8a810edd3372","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/a3d3d4bf-8ad0-4f81-be69-8a810edd3372/ticks/636910469113828882","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d504fa4f-a81c-4a9c-8e63-f667f3d9bd24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.3828882Z","submissionTimestamp":"2019-04-16T21:28:55.0635303Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a/ticks/636910469060342985","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"6af3c889-a56a-4d42-ac12-950af9650654","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9c36476d-f843-4442-a8f6-45efae83def4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:26.0342985Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"7514da9f-afb9-4647-930e-6d7e069b6a6c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7514da9f-afb9-4647-930e-6d7e069b6a6c/ticks/636910469059742968","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4d85df4d-c94c-43fa-9582-55a94900ed86","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"a5bcd388-617c-4eea-8e41-1144995b1908\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b062219d-69c1-4b16-b4b8-2a2ebd48ea95\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.9742968Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"89218770-733a-4fb6-8016-d2a1de1e1198","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/89218770-733a-4fb6-8016-d2a1de1e1198/ticks/636910469058293000","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.8293Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"2427a658-4900-4f53-8c25-669100f55318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2427a658-4900-4f53-8c25-669100f55318/ticks/636910469057642911","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7642911Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"139f8be1-4b71-4482-bbb8-b044397fec60","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/139f8be1-4b71-4482-bbb8-b044397fec60/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ad1a0f7-cafd-4cf1-9a84-f9b159da47fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"236ebe51-8a13-446a-8c16-581f2ac31123","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/236ebe51-8a13-446a-8c16-581f2ac31123/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"21f69afd-46cb-4d7a-a2c6-d1d2a9d8d427","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:19.9553411Z","submissionTimestamp":"2019-04-30T01:08:44.0679514Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"19bf5490-0d54-460a-80e9-148af0ba3902","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1f14e042-be04-45cc-9635-cdbaefd9c87b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/19bf5490-0d54-460a-80e9-148af0ba3902/ticks/636921832876236229","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f95c3e29-08af-4057-beaf-4f3b755d9113"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:07.6236229Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"75bb01e2-24fd-4034-8694-4655befa2bcd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/75bb01e2-24fd-4034-8694-4655befa2bcd/ticks/636921832875485901","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:07.5485901Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1614b230-9792-4108-a802-bd9db09c9f43","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1f14e042-be04-45cc-9635-cdbaefd9c87b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/1614b230-9792-4108-a802-bd9db09c9f43/ticks/636921832864286252","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.4286252Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5e09f9a9-bd22-4b7e-8900-7f10e78ea838","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/5e09f9a9-bd22-4b7e-8900-7f10e78ea838/ticks/636921832855552059","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"a0c275c1-2509-48da-b9a4-c5eb335694ef","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:05.5552059Z","submissionTimestamp":"2019-04-30T01:08:29.1557925Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"bba23167-30a0-4b46-9baa-57d6b70ff0c3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/bba23167-30a0-4b46-9baa-57d6b70ff0c3/ticks/636921832759624829","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"6f872ca8-3711-45e1-bea6-659924daa8e6","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9624829Z","submissionTimestamp":"2019-04-30T01:08:14.4883977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6d180780-82e6-4898-a527-a21d8f868a71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6d180780-82e6-4898-a527-a21d8f868a71/ticks/636921832743513431","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a5d44a67-2dc5-4422-a3d7-b6911dad1e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:54.3513431Z","submissionTimestamp":"2019-04-30T01:08:19.1202326Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"7061f230-4bb4-49fd-bbab-8500ab1c6fb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7061f230-4bb4-49fd-bbab-8500ab1c6fb8/ticks/636921832722516079","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f61b0cfb-953f-4bfe-a010-156913f5b975","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.2516079Z","submissionTimestamp":"2019-04-30T01:08:12.9758639Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"3b4c0088-89d3-4097-85a6-6c849bce7327","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/3b4c0088-89d3-4097-85a6-6c849bce7327/ticks/636921832721420929","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c7312520-940a-4717-8223-ced07c2838a0","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a10110a8-67d7-46b4-8b6d-7f42fc11ebdb\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:52.1420929Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"795d7524-ef67-4e14-9fe4-76dd99c0fbda","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/795d7524-ef67-4e14-9fe4-76dd99c0fbda/ticks/636921832714120841","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:51.4120841Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"132aaba0-4744-4f45-9b1e-cd9a45d5f284","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/132aaba0-4744-4f45-9b1e-cd9a45d5f284/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"be455762-dac4-4e72-aba6-d085b6115f5b","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"471901df-f2c0-46db-85c9-21c971cec0b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/471901df-f2c0-46db-85c9-21c971cec0b8/ticks/636910469055743167","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4498f7ed-785e-42f2-b8c6-f1576d2be918","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ec54ef5f-c2cd-4c6e-a360-dbf67f629da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"44bf66e2-8d51-4129-9b71-8dfc14de0c25","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/44bf66e2-8d51-4129-9b71-8dfc14de0c25/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"24066a15-c075-4e26-8696-31caaab3945d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"d6212d61-a9cb-4568-9411-d5eac8f4a072","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/d6212d61-a9cb-4568-9411-d5eac8f4a072/ticks/636921832679076533","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8b1e61c9-c55e-4470-91d0-b1659e8851b9","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"85ed8806-f0af-410a-8c6d-6a13088f7ed1\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.9076533Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"109d92ce-bb7e-41ca-b665-dcc5beae8ff9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/109d92ce-bb7e-41ca-b665-dcc5beae8ff9/ticks/636921832678926165","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"b5f9e47e-be69-47d1-9dbc-abd851b56f43","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31d29813-e066-413f-a41c-f3fda7a77b48\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.5743167Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"67f5f150-c97a-4e8d-9b94-5be0f5439024","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/67f5f150-c97a-4e8d-9b94-5be0f5439024/ticks/636910469029042960","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.904296Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b59b62a3-ada6-43c1-834c-17a7c4efd943","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/b59b62a3-ada6-43c1-834c-17a7c4efd943/ticks/636910469028942828","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8942828Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"fa8edc81-7d51-4aa4-b28f-1babdd72f52a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/fa8edc81-7d51-4aa4-b28f-1babdd72f52a/ticks/636910469028143185","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8143185Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b2b2a680-f30b-41ee-9354-8fc6192987e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/b2b2a680-f30b-41ee-9354-8fc6192987e7/ticks/636910469026893150","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.689315Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"0905be32-d5aa-4d5f-a49a-38bf37099e15","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/0905be32-d5aa-4d5f-a49a-38bf37099e15/ticks/636910469025343191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.5343191Z","submissionTimestamp":"2019-04-16T21:28:44.1113246Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a9c3efab-48ea-4721-852e-af1edc38200a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/a9c3efab-48ea-4721-852e-af1edc38200a/ticks/636910469003019189","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8926165Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5a26228d-2476-4242-bc17-7263a47413e7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5a26228d-2476-4242-bc17-7263a47413e7/ticks/636921832678626241","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3a008071-81f2-4006-8b81-ae598cd9d67e","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"6eff7e36-2311-46c6-a3c6-2b8885bb215c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b2771ace-6700-4f25-b2ab-e43c31897d00\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8626241Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"cdeb9b80-e9c1-48be-998e-87441a1e8182","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/cdeb9b80-e9c1-48be-998e-87441a1e8182/ticks/636921832678276278","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.8276278Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"2c22fe9c-19e3-4dc1-802b-4242cacd85fb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2c22fe9c-19e3-4dc1-802b-4242cacd85fb/ticks/636921832677826161","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.7826161Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"625e86a9-4ac7-4d7c-acbe-8129696b8e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/625e86a9-4ac7-4d7c-acbe-8129696b8e95/ticks/636921832667126078","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7126078Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6bc6ce06-dac8-436c-9099-31fe0ec48da9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6bc6ce06-dac8-436c-9099-31fe0ec48da9/ticks/636921832667076075","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7076075Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1a3c4b56-f65e-4651-8133-e2767363ebed","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/1a3c4b56-f65e-4651-8133-e2767363ebed/ticks/636921832667026069","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7026069Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1d474f3d-7543-4fd9-a13b-0b8ab051a32c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/1d474f3d-7543-4fd9-a13b-0b8ab051a32c/ticks/636921832666876074","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6876074Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"c5f98b19-14a3-49ed-84d6-047bec4fd211","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/c5f98b19-14a3-49ed-84d6-047bec4fd211/ticks/636921832666276188","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6276188Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"09665fba-709a-4e82-ba96-645260173169","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/09665fba-709a-4e82-ba96-645260173169/ticks/636921832650753635","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:20.3019189Z","submissionTimestamp":"2019-04-16T21:28:42.1017349Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"238993a3-afa8-4ecc-97ce-0fa456d11455","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/238993a3-afa8-4ecc-97ce-0fa456d11455/ticks/636910468970169183","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:17.0169183Z","submissionTimestamp":"2019-04-16T21:28:32.0816776Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.0753635Z","submissionTimestamp":"2019-04-30T01:08:02.1041047Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"90ea0f6c-5ea6-4d0a-ae9b-b98787a51464","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/90ea0f6c-5ea6-4d0a-ae9b-b98787a51464/ticks/636921832614653662","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.4653662Z","submissionTimestamp":"2019-04-30T01:08:02.1031048Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '103184' + - '103351' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:29:29 GMT + - Tue, 30 Apr 2019 01:08:54 GMT expires: - '-1' pragma: @@ -1190,109 +1255,109 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A29%3A39Z%20and%20correlationId%20eq%20%27668b1ef7-b720-4e5e-b612-fdae9c97de71%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A04Z%20and%20correlationId%20eq%20%27ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"9b3caea3-99ef-462c-b8e8-801f2d9adc91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/9b3caea3-99ef-462c-b8e8-801f2d9adc91/ticks/636910469466637237","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"c77db4e2-4535-4537-80b4-1009213e2912","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"f5e8686b-490f-4122-9f09-d7a1cab9e421","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f5e8686b-490f-4122-9f09-d7a1cab9e421/ticks/636921832999553411","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a0f7fb93-3432-4e8e-b963-a52890f56202","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:29:06.6637237Z","submissionTimestamp":"2019-04-16T21:29:21.0839286Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"77ea0021-3a19-4e9a-aa07-85572af1935c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"88ecdad6-5671-4508-bc4e-3b436848ee90","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/77ea0021-3a19-4e9a-aa07-85572af1935c/ticks/636910469348199667","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7c9b6ec-8e5b-47bd-a0e7-0702a3769fea"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:54.8199667Z","submissionTimestamp":"2019-04-16T21:29:12.1564131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"f19aeff6-9cfb-4c58-afca-5b13fdceb7bb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f19aeff6-9cfb-4c58-afca-5b13fdceb7bb/ticks/636910469345949593","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:54.5949593Z","submissionTimestamp":"2019-04-16T21:29:12.1564131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"5c274548-d109-4fe3-a27e-9af61d448062","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"88ecdad6-5671-4508-bc4e-3b436848ee90","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/5c274548-d109-4fe3-a27e-9af61d448062/ticks/636910469318499511","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:51.8499511Z","submissionTimestamp":"2019-04-16T21:29:12.1554115Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"5be0c566-110d-4c1a-9b5d-794e052c590d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/5be0c566-110d-4c1a-9b5d-794e052c590d/ticks/636910469249862231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"d90ba5e9-a8af-4209-b667-aedac9ad2990","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:44.9862231Z","submissionTimestamp":"2019-04-16T21:29:06.1445893Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"097114d2-77f4-4c78-b329-5a3ba4765f16","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/097114d2-77f4-4c78-b329-5a3ba4765f16/ticks/636910469132014106","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d8af33f-e55a-451d-84a0-854923beab6c","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"1fc74cc3-94c5-4e5b-a2b4-d6e2c566d480\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:33.2014106Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"928586ba-a761-45b7-86d9-d4de73a8fe58","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/928586ba-a761-45b7-86d9-d4de73a8fe58/ticks/636910469117869078","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"bd240a5f-71fb-4485-8391-ae90d1d1d34f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.7869078Z","submissionTimestamp":"2019-04-16T21:28:56.0630574Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b9584c39-1722-44ba-b97c-5bf9bf2ee080","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/b9584c39-1722-44ba-b97c-5bf9bf2ee080/ticks/636910469116552928","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.6552928Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"63872d41-c763-4193-87be-5d1b03ef2b8b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/63872d41-c763-4193-87be-5d1b03ef2b8b/ticks/636910469116293670","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c674873a-b35d-47c7-a9f8-4826e69deed5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.629367Z","submissionTimestamp":"2019-04-16T21:28:57.0664235Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a3d3d4bf-8ad0-4f81-be69-8a810edd3372","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/a3d3d4bf-8ad0-4f81-be69-8a810edd3372/ticks/636910469113828882","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d504fa4f-a81c-4a9c-8e63-f667f3d9bd24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.3828882Z","submissionTimestamp":"2019-04-16T21:28:55.0635303Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a/ticks/636910469060342985","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"6af3c889-a56a-4d42-ac12-950af9650654","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9c36476d-f843-4442-a8f6-45efae83def4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:26.0342985Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"7514da9f-afb9-4647-930e-6d7e069b6a6c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7514da9f-afb9-4647-930e-6d7e069b6a6c/ticks/636910469059742968","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4d85df4d-c94c-43fa-9582-55a94900ed86","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"a5bcd388-617c-4eea-8e41-1144995b1908\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b062219d-69c1-4b16-b4b8-2a2ebd48ea95\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.9742968Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"89218770-733a-4fb6-8016-d2a1de1e1198","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/89218770-733a-4fb6-8016-d2a1de1e1198/ticks/636910469058293000","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.8293Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"2427a658-4900-4f53-8c25-669100f55318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2427a658-4900-4f53-8c25-669100f55318/ticks/636910469057642911","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7642911Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"139f8be1-4b71-4482-bbb8-b044397fec60","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/139f8be1-4b71-4482-bbb8-b044397fec60/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ad1a0f7-cafd-4cf1-9a84-f9b159da47fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"236ebe51-8a13-446a-8c16-581f2ac31123","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/236ebe51-8a13-446a-8c16-581f2ac31123/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"21f69afd-46cb-4d7a-a2c6-d1d2a9d8d427","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:19.9553411Z","submissionTimestamp":"2019-04-30T01:08:44.0679514Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"19bf5490-0d54-460a-80e9-148af0ba3902","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1f14e042-be04-45cc-9635-cdbaefd9c87b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/19bf5490-0d54-460a-80e9-148af0ba3902/ticks/636921832876236229","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f95c3e29-08af-4057-beaf-4f3b755d9113"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:07.6236229Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"75bb01e2-24fd-4034-8694-4655befa2bcd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/75bb01e2-24fd-4034-8694-4655befa2bcd/ticks/636921832875485901","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:07.5485901Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1614b230-9792-4108-a802-bd9db09c9f43","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1f14e042-be04-45cc-9635-cdbaefd9c87b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/1614b230-9792-4108-a802-bd9db09c9f43/ticks/636921832864286252","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.4286252Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5e09f9a9-bd22-4b7e-8900-7f10e78ea838","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/5e09f9a9-bd22-4b7e-8900-7f10e78ea838/ticks/636921832855552059","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"a0c275c1-2509-48da-b9a4-c5eb335694ef","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:05.5552059Z","submissionTimestamp":"2019-04-30T01:08:29.1557925Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"bba23167-30a0-4b46-9baa-57d6b70ff0c3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/bba23167-30a0-4b46-9baa-57d6b70ff0c3/ticks/636921832759624829","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"6f872ca8-3711-45e1-bea6-659924daa8e6","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9624829Z","submissionTimestamp":"2019-04-30T01:08:14.4883977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6d180780-82e6-4898-a527-a21d8f868a71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6d180780-82e6-4898-a527-a21d8f868a71/ticks/636921832743513431","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a5d44a67-2dc5-4422-a3d7-b6911dad1e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:54.3513431Z","submissionTimestamp":"2019-04-30T01:08:19.1202326Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"7061f230-4bb4-49fd-bbab-8500ab1c6fb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7061f230-4bb4-49fd-bbab-8500ab1c6fb8/ticks/636921832722516079","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f61b0cfb-953f-4bfe-a010-156913f5b975","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.2516079Z","submissionTimestamp":"2019-04-30T01:08:12.9758639Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"3b4c0088-89d3-4097-85a6-6c849bce7327","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/3b4c0088-89d3-4097-85a6-6c849bce7327/ticks/636921832721420929","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c7312520-940a-4717-8223-ced07c2838a0","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a10110a8-67d7-46b4-8b6d-7f42fc11ebdb\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:52.1420929Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"795d7524-ef67-4e14-9fe4-76dd99c0fbda","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/795d7524-ef67-4e14-9fe4-76dd99c0fbda/ticks/636921832714120841","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:51.4120841Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"132aaba0-4744-4f45-9b1e-cd9a45d5f284","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/132aaba0-4744-4f45-9b1e-cd9a45d5f284/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"be455762-dac4-4e72-aba6-d085b6115f5b","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"471901df-f2c0-46db-85c9-21c971cec0b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/471901df-f2c0-46db-85c9-21c971cec0b8/ticks/636910469055743167","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4498f7ed-785e-42f2-b8c6-f1576d2be918","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ec54ef5f-c2cd-4c6e-a360-dbf67f629da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"44bf66e2-8d51-4129-9b71-8dfc14de0c25","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/44bf66e2-8d51-4129-9b71-8dfc14de0c25/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"24066a15-c075-4e26-8696-31caaab3945d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"d6212d61-a9cb-4568-9411-d5eac8f4a072","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/d6212d61-a9cb-4568-9411-d5eac8f4a072/ticks/636921832679076533","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8b1e61c9-c55e-4470-91d0-b1659e8851b9","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"85ed8806-f0af-410a-8c6d-6a13088f7ed1\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.9076533Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"109d92ce-bb7e-41ca-b665-dcc5beae8ff9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/109d92ce-bb7e-41ca-b665-dcc5beae8ff9/ticks/636921832678926165","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"b5f9e47e-be69-47d1-9dbc-abd851b56f43","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31d29813-e066-413f-a41c-f3fda7a77b48\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.5743167Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"67f5f150-c97a-4e8d-9b94-5be0f5439024","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/67f5f150-c97a-4e8d-9b94-5be0f5439024/ticks/636910469029042960","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.904296Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b59b62a3-ada6-43c1-834c-17a7c4efd943","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/b59b62a3-ada6-43c1-834c-17a7c4efd943/ticks/636910469028942828","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8942828Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"fa8edc81-7d51-4aa4-b28f-1babdd72f52a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/fa8edc81-7d51-4aa4-b28f-1babdd72f52a/ticks/636910469028143185","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8143185Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b2b2a680-f30b-41ee-9354-8fc6192987e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/b2b2a680-f30b-41ee-9354-8fc6192987e7/ticks/636910469026893150","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.689315Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"0905be32-d5aa-4d5f-a49a-38bf37099e15","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/0905be32-d5aa-4d5f-a49a-38bf37099e15/ticks/636910469025343191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.5343191Z","submissionTimestamp":"2019-04-16T21:28:44.1113246Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a9c3efab-48ea-4721-852e-af1edc38200a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/a9c3efab-48ea-4721-852e-af1edc38200a/ticks/636910469003019189","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8926165Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5a26228d-2476-4242-bc17-7263a47413e7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5a26228d-2476-4242-bc17-7263a47413e7/ticks/636921832678626241","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3a008071-81f2-4006-8b81-ae598cd9d67e","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"6eff7e36-2311-46c6-a3c6-2b8885bb215c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b2771ace-6700-4f25-b2ab-e43c31897d00\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8626241Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"cdeb9b80-e9c1-48be-998e-87441a1e8182","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/cdeb9b80-e9c1-48be-998e-87441a1e8182/ticks/636921832678276278","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.8276278Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"2c22fe9c-19e3-4dc1-802b-4242cacd85fb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2c22fe9c-19e3-4dc1-802b-4242cacd85fb/ticks/636921832677826161","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.7826161Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"625e86a9-4ac7-4d7c-acbe-8129696b8e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/625e86a9-4ac7-4d7c-acbe-8129696b8e95/ticks/636921832667126078","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7126078Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6bc6ce06-dac8-436c-9099-31fe0ec48da9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6bc6ce06-dac8-436c-9099-31fe0ec48da9/ticks/636921832667076075","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7076075Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1a3c4b56-f65e-4651-8133-e2767363ebed","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/1a3c4b56-f65e-4651-8133-e2767363ebed/ticks/636921832667026069","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7026069Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1d474f3d-7543-4fd9-a13b-0b8ab051a32c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/1d474f3d-7543-4fd9-a13b-0b8ab051a32c/ticks/636921832666876074","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6876074Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"c5f98b19-14a3-49ed-84d6-047bec4fd211","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/c5f98b19-14a3-49ed-84d6-047bec4fd211/ticks/636921832666276188","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6276188Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"09665fba-709a-4e82-ba96-645260173169","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/09665fba-709a-4e82-ba96-645260173169/ticks/636921832650753635","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:20.3019189Z","submissionTimestamp":"2019-04-16T21:28:42.1017349Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"238993a3-afa8-4ecc-97ce-0fa456d11455","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/238993a3-afa8-4ecc-97ce-0fa456d11455/ticks/636910468970169183","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:17.0169183Z","submissionTimestamp":"2019-04-16T21:28:32.0816776Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.0753635Z","submissionTimestamp":"2019-04-30T01:08:02.1041047Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"90ea0f6c-5ea6-4d0a-ae9b-b98787a51464","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/90ea0f6c-5ea6-4d0a-ae9b-b98787a51464/ticks/636921832614653662","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.4653662Z","submissionTimestamp":"2019-04-30T01:08:02.1031048Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '103184' + - '103351' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:29:40 GMT + - Tue, 30 Apr 2019 01:09:04 GMT expires: - '-1' pragma: @@ -1326,389 +1391,113 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A29%3A49Z%20and%20correlationId%20eq%20%27668b1ef7-b720-4e5e-b612-fdae9c97de71%27 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-19T09%3A09%3A15Z%20and%20correlationId%20eq%20%27ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1%27 response: body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"9b3caea3-99ef-462c-b8e8-801f2d9adc91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/9b3caea3-99ef-462c-b8e8-801f2d9adc91/ticks/636910469466637237","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"c77db4e2-4535-4537-80b4-1009213e2912","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"a97d4ea6-c8b6-4bbc-a367-a596e2df8049","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/a97d4ea6-c8b6-4bbc-a367-a596e2df8049/ticks/636921833318019510","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"78631256-724c-4ec9-a065-eb15fe1db680","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:29:06.6637237Z","submissionTimestamp":"2019-04-16T21:29:21.0839286Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"77ea0021-3a19-4e9a-aa07-85572af1935c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"88ecdad6-5671-4508-bc4e-3b436848ee90","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/77ea0021-3a19-4e9a-aa07-85572af1935c/ticks/636910469348199667","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7c9b6ec-8e5b-47bd-a0e7-0702a3769fea"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:54.8199667Z","submissionTimestamp":"2019-04-16T21:29:12.1564131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"f19aeff6-9cfb-4c58-afca-5b13fdceb7bb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f19aeff6-9cfb-4c58-afca-5b13fdceb7bb/ticks/636910469345949593","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:54.5949593Z","submissionTimestamp":"2019-04-16T21:29:12.1564131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"5c274548-d109-4fe3-a27e-9af61d448062","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"88ecdad6-5671-4508-bc4e-3b436848ee90","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/5c274548-d109-4fe3-a27e-9af61d448062/ticks/636910469318499511","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:51.8499511Z","submissionTimestamp":"2019-04-16T21:29:12.1554115Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"5be0c566-110d-4c1a-9b5d-794e052c590d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/5be0c566-110d-4c1a-9b5d-794e052c590d/ticks/636910469249862231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"d90ba5e9-a8af-4209-b667-aedac9ad2990","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:44.9862231Z","submissionTimestamp":"2019-04-16T21:29:06.1445893Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"097114d2-77f4-4c78-b329-5a3ba4765f16","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/097114d2-77f4-4c78-b329-5a3ba4765f16/ticks/636910469132014106","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d8af33f-e55a-451d-84a0-854923beab6c","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"1fc74cc3-94c5-4e5b-a2b4-d6e2c566d480\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:33.2014106Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"928586ba-a761-45b7-86d9-d4de73a8fe58","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/928586ba-a761-45b7-86d9-d4de73a8fe58/ticks/636910469117869078","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"bd240a5f-71fb-4485-8391-ae90d1d1d34f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.7869078Z","submissionTimestamp":"2019-04-16T21:28:56.0630574Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b9584c39-1722-44ba-b97c-5bf9bf2ee080","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/b9584c39-1722-44ba-b97c-5bf9bf2ee080/ticks/636910469116552928","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.6552928Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"63872d41-c763-4193-87be-5d1b03ef2b8b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/63872d41-c763-4193-87be-5d1b03ef2b8b/ticks/636910469116293670","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c674873a-b35d-47c7-a9f8-4826e69deed5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.629367Z","submissionTimestamp":"2019-04-16T21:28:57.0664235Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a3d3d4bf-8ad0-4f81-be69-8a810edd3372","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/a3d3d4bf-8ad0-4f81-be69-8a810edd3372/ticks/636910469113828882","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d504fa4f-a81c-4a9c-8e63-f667f3d9bd24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.3828882Z","submissionTimestamp":"2019-04-16T21:28:55.0635303Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a/ticks/636910469060342985","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"6af3c889-a56a-4d42-ac12-950af9650654","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9c36476d-f843-4442-a8f6-45efae83def4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:26.0342985Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"7514da9f-afb9-4647-930e-6d7e069b6a6c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7514da9f-afb9-4647-930e-6d7e069b6a6c/ticks/636910469059742968","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4d85df4d-c94c-43fa-9582-55a94900ed86","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"a5bcd388-617c-4eea-8e41-1144995b1908\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b062219d-69c1-4b16-b4b8-2a2ebd48ea95\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.9742968Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"89218770-733a-4fb6-8016-d2a1de1e1198","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/89218770-733a-4fb6-8016-d2a1de1e1198/ticks/636910469058293000","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.8293Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"2427a658-4900-4f53-8c25-669100f55318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2427a658-4900-4f53-8c25-669100f55318/ticks/636910469057642911","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7642911Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"139f8be1-4b71-4482-bbb8-b044397fec60","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/139f8be1-4b71-4482-bbb8-b044397fec60/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ad1a0f7-cafd-4cf1-9a84-f9b159da47fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"236ebe51-8a13-446a-8c16-581f2ac31123","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/236ebe51-8a13-446a-8c16-581f2ac31123/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"21f69afd-46cb-4d7a-a2c6-d1d2a9d8d427","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"471901df-f2c0-46db-85c9-21c971cec0b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/471901df-f2c0-46db-85c9-21c971cec0b8/ticks/636910469055743167","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4498f7ed-785e-42f2-b8c6-f1576d2be918","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ec54ef5f-c2cd-4c6e-a360-dbf67f629da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.5743167Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"67f5f150-c97a-4e8d-9b94-5be0f5439024","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/67f5f150-c97a-4e8d-9b94-5be0f5439024/ticks/636910469029042960","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.904296Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b59b62a3-ada6-43c1-834c-17a7c4efd943","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/b59b62a3-ada6-43c1-834c-17a7c4efd943/ticks/636910469028942828","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8942828Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"fa8edc81-7d51-4aa4-b28f-1babdd72f52a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/fa8edc81-7d51-4aa4-b28f-1babdd72f52a/ticks/636910469028143185","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8143185Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b2b2a680-f30b-41ee-9354-8fc6192987e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/b2b2a680-f30b-41ee-9354-8fc6192987e7/ticks/636910469026893150","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.689315Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"0905be32-d5aa-4d5f-a49a-38bf37099e15","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/0905be32-d5aa-4d5f-a49a-38bf37099e15/ticks/636910469025343191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.5343191Z","submissionTimestamp":"2019-04-16T21:28:44.1113246Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a9c3efab-48ea-4721-852e-af1edc38200a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/a9c3efab-48ea-4721-852e-af1edc38200a/ticks/636910469003019189","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:20.3019189Z","submissionTimestamp":"2019-04-16T21:28:42.1017349Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"238993a3-afa8-4ecc-97ce-0fa456d11455","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/238993a3-afa8-4ecc-97ce-0fa456d11455/ticks/636910468970169183","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:17.0169183Z","submissionTimestamp":"2019-04-16T21:28:32.0816776Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' - headers: - cache-control: - - no-cache - content-length: - - '103184' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 16 Apr 2019 21:29:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk - User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A29%3A59Z%20and%20correlationId%20eq%20%27668b1ef7-b720-4e5e-b612-fdae9c97de71%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"c1fd8c67-c75b-4138-976f-7ad7d1736674","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/c1fd8c67-c75b-4138-976f-7ad7d1736674/ticks/636910469782996389","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9ce69ce5-88a5-4c43-8522-8ff9daa0be8c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:29:38.2996389Z","submissionTimestamp":"2019-04-16T21:29:56.1171772Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"9b3caea3-99ef-462c-b8e8-801f2d9adc91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/9b3caea3-99ef-462c-b8e8-801f2d9adc91/ticks/636910469466637237","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"c77db4e2-4535-4537-80b4-1009213e2912","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:51.801951Z","submissionTimestamp":"2019-04-30T01:09:14.0809865Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"f5e8686b-490f-4122-9f09-d7a1cab9e421","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f5e8686b-490f-4122-9f09-d7a1cab9e421/ticks/636921832999553411","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"a0f7fb93-3432-4e8e-b963-a52890f56202","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:29:06.6637237Z","submissionTimestamp":"2019-04-16T21:29:21.0839286Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"77ea0021-3a19-4e9a-aa07-85572af1935c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"88ecdad6-5671-4508-bc4e-3b436848ee90","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/77ea0021-3a19-4e9a-aa07-85572af1935c/ticks/636910469348199667","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7c9b6ec-8e5b-47bd-a0e7-0702a3769fea"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:54.8199667Z","submissionTimestamp":"2019-04-16T21:29:12.1564131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"f19aeff6-9cfb-4c58-afca-5b13fdceb7bb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f19aeff6-9cfb-4c58-afca-5b13fdceb7bb/ticks/636910469345949593","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:54.5949593Z","submissionTimestamp":"2019-04-16T21:29:12.1564131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"5c274548-d109-4fe3-a27e-9af61d448062","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"88ecdad6-5671-4508-bc4e-3b436848ee90","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/5c274548-d109-4fe3-a27e-9af61d448062/ticks/636910469318499511","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:51.8499511Z","submissionTimestamp":"2019-04-16T21:29:12.1554115Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"5be0c566-110d-4c1a-9b5d-794e052c590d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/5be0c566-110d-4c1a-9b5d-794e052c590d/ticks/636910469249862231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"d90ba5e9-a8af-4209-b667-aedac9ad2990","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:44.9862231Z","submissionTimestamp":"2019-04-16T21:29:06.1445893Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"097114d2-77f4-4c78-b329-5a3ba4765f16","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/097114d2-77f4-4c78-b329-5a3ba4765f16/ticks/636910469132014106","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d8af33f-e55a-451d-84a0-854923beab6c","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"1fc74cc3-94c5-4e5b-a2b4-d6e2c566d480\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:33.2014106Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"928586ba-a761-45b7-86d9-d4de73a8fe58","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/928586ba-a761-45b7-86d9-d4de73a8fe58/ticks/636910469117869078","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"bd240a5f-71fb-4485-8391-ae90d1d1d34f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.7869078Z","submissionTimestamp":"2019-04-16T21:28:56.0630574Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b9584c39-1722-44ba-b97c-5bf9bf2ee080","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/b9584c39-1722-44ba-b97c-5bf9bf2ee080/ticks/636910469116552928","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.6552928Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"63872d41-c763-4193-87be-5d1b03ef2b8b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/63872d41-c763-4193-87be-5d1b03ef2b8b/ticks/636910469116293670","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c674873a-b35d-47c7-a9f8-4826e69deed5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.629367Z","submissionTimestamp":"2019-04-16T21:28:57.0664235Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a3d3d4bf-8ad0-4f81-be69-8a810edd3372","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/a3d3d4bf-8ad0-4f81-be69-8a810edd3372/ticks/636910469113828882","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d504fa4f-a81c-4a9c-8e63-f667f3d9bd24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.3828882Z","submissionTimestamp":"2019-04-16T21:28:55.0635303Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a/ticks/636910469060342985","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"6af3c889-a56a-4d42-ac12-950af9650654","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9c36476d-f843-4442-a8f6-45efae83def4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:26.0342985Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"7514da9f-afb9-4647-930e-6d7e069b6a6c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7514da9f-afb9-4647-930e-6d7e069b6a6c/ticks/636910469059742968","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4d85df4d-c94c-43fa-9582-55a94900ed86","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"a5bcd388-617c-4eea-8e41-1144995b1908\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b062219d-69c1-4b16-b4b8-2a2ebd48ea95\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.9742968Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"89218770-733a-4fb6-8016-d2a1de1e1198","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/89218770-733a-4fb6-8016-d2a1de1e1198/ticks/636910469058293000","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.8293Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"2427a658-4900-4f53-8c25-669100f55318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2427a658-4900-4f53-8c25-669100f55318/ticks/636910469057642911","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7642911Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"139f8be1-4b71-4482-bbb8-b044397fec60","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/139f8be1-4b71-4482-bbb8-b044397fec60/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ad1a0f7-cafd-4cf1-9a84-f9b159da47fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"236ebe51-8a13-446a-8c16-581f2ac31123","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/236ebe51-8a13-446a-8c16-581f2ac31123/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"21f69afd-46cb-4d7a-a2c6-d1d2a9d8d427","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:19.9553411Z","submissionTimestamp":"2019-04-30T01:08:44.0679514Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"19bf5490-0d54-460a-80e9-148af0ba3902","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1f14e042-be04-45cc-9635-cdbaefd9c87b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/19bf5490-0d54-460a-80e9-148af0ba3902/ticks/636921832876236229","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f95c3e29-08af-4057-beaf-4f3b755d9113"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:08:07.6236229Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"75bb01e2-24fd-4034-8694-4655befa2bcd","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/75bb01e2-24fd-4034-8694-4655befa2bcd/ticks/636921832875485901","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:07.5485901Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1614b230-9792-4108-a802-bd9db09c9f43","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1f14e042-be04-45cc-9635-cdbaefd9c87b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/1614b230-9792-4108-a802-bd9db09c9f43/ticks/636921832864286252","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9be7e750-56c2-4f82-890b-73cc067b035b","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create + or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:06.4286252Z","submissionTimestamp":"2019-04-30T01:08:28.0758636Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5e09f9a9-bd22-4b7e-8900-7f10e78ea838","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/5e09f9a9-bd22-4b7e-8900-7f10e78ea838/ticks/636921832855552059","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"a0c275c1-2509-48da-b9a4-c5eb335694ef","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:08:05.5552059Z","submissionTimestamp":"2019-04-30T01:08:29.1557925Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"bba23167-30a0-4b46-9baa-57d6b70ff0c3","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/bba23167-30a0-4b46-9baa-57d6b70ff0c3/ticks/636921832759624829","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"6f872ca8-3711-45e1-bea6-659924daa8e6","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:55.9624829Z","submissionTimestamp":"2019-04-30T01:08:14.4883977Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6d180780-82e6-4898-a527-a21d8f868a71","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6d180780-82e6-4898-a527-a21d8f868a71/ticks/636921832743513431","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a5d44a67-2dc5-4422-a3d7-b6911dad1e08","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:54.3513431Z","submissionTimestamp":"2019-04-30T01:08:19.1202326Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"7061f230-4bb4-49fd-bbab-8500ab1c6fb8","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7061f230-4bb4-49fd-bbab-8500ab1c6fb8/ticks/636921832722516079","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"f61b0cfb-953f-4bfe-a010-156913f5b975","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:52.2516079Z","submissionTimestamp":"2019-04-30T01:08:12.9758639Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"3b4c0088-89d3-4097-85a6-6c849bce7327","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/3b4c0088-89d3-4097-85a6-6c849bce7327/ticks/636921832721420929","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"c7312520-940a-4717-8223-ced07c2838a0","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a10110a8-67d7-46b4-8b6d-7f42fc11ebdb\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"2bae4097-f669-4a3c-8b2c-515eb98fb438\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:52.1420929Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"795d7524-ef67-4e14-9fe4-76dd99c0fbda","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"be4a7807-2857-473b-9024-5a1e8514d7e7","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/795d7524-ef67-4e14-9fe4-76dd99c0fbda/ticks/636921832714120841","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"1bb00148-9dbc-4b95-8f14-3f818a4e0925","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create + or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:51.4120841Z","submissionTimestamp":"2019-04-30T01:08:10.0762384Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"132aaba0-4744-4f45-9b1e-cd9a45d5f284","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/132aaba0-4744-4f45-9b1e-cd9a45d5f284/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"be455762-dac4-4e72-aba6-d085b6115f5b","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"471901df-f2c0-46db-85c9-21c971cec0b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/471901df-f2c0-46db-85c9-21c971cec0b8/ticks/636910469055743167","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4498f7ed-785e-42f2-b8c6-f1576d2be918","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ec54ef5f-c2cd-4c6e-a360-dbf67f629da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"44bf66e2-8d51-4129-9b71-8dfc14de0c25","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/44bf66e2-8d51-4129-9b71-8dfc14de0c25/ticks/636921832679326172","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"24066a15-c075-4e26-8696-31caaab3945d"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted + (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-30T01:07:47.9326172Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"d6212d61-a9cb-4568-9411-d5eac8f4a072","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/d6212d61-a9cb-4568-9411-d5eac8f4a072/ticks/636921832679076533","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create + or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"8b1e61c9-c55e-4470-91d0-b1659e8851b9","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"85ed8806-f0af-410a-8c6d-6a13088f7ed1\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"a89e4f75-3b77-490f-b3ba-1adc62a202a5\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.9076533Z","submissionTimestamp":"2019-04-30T01:08:00.0969345Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"109d92ce-bb7e-41ca-b665-dcc5beae8ff9","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/109d92ce-bb7e-41ca-b665-dcc5beae8ff9/ticks/636921832678926165","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"b5f9e47e-be69-47d1-9dbc-abd851b56f43","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"31d29813-e066-413f-a41c-f3fda7a77b48\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny + all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow + outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"8f2d5445-778b-4311-8fbe-3c46f575ad96\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.5743167Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"67f5f150-c97a-4e8d-9b94-5be0f5439024","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/67f5f150-c97a-4e8d-9b94-5be0f5439024/ticks/636910469029042960","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.904296Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b59b62a3-ada6-43c1-834c-17a7c4efd943","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/b59b62a3-ada6-43c1-834c-17a7c4efd943/ticks/636910469028942828","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8942828Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"fa8edc81-7d51-4aa4-b28f-1babdd72f52a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/fa8edc81-7d51-4aa4-b28f-1babdd72f52a/ticks/636910469028143185","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8143185Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b2b2a680-f30b-41ee-9354-8fc6192987e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/b2b2a680-f30b-41ee-9354-8fc6192987e7/ticks/636910469026893150","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.689315Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"0905be32-d5aa-4d5f-a49a-38bf37099e15","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/0905be32-d5aa-4d5f-a49a-38bf37099e15/ticks/636910469025343191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.5343191Z","submissionTimestamp":"2019-04-16T21:28:44.1113246Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a9c3efab-48ea-4721-852e-af1edc38200a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/a9c3efab-48ea-4721-852e-af1edc38200a/ticks/636910469003019189","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8926165Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"5a26228d-2476-4242-bc17-7263a47413e7","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/5a26228d-2476-4242-bc17-7263a47413e7/ticks/636921832678626241","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"3a008071-81f2-4006-8b81-ae598cd9d67e","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"6eff7e36-2311-46c6-a3c6-2b8885bb215c\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b2771ace-6700-4f25-b2ab-e43c31897d00\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:47.8626241Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"cdeb9b80-e9c1-48be-998e-87441a1e8182","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/cdeb9b80-e9c1-48be-998e-87441a1e8182/ticks/636921832678276278","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.8276278Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"2c22fe9c-19e3-4dc1-802b-4242cacd85fb","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2c22fe9c-19e3-4dc1-802b-4242cacd85fb/ticks/636921832677826161","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:47.7826161Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"625e86a9-4ac7-4d7c-acbe-8129696b8e95","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/625e86a9-4ac7-4d7c-acbe-8129696b8e95/ticks/636921832667126078","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"b01d773d-e006-4f66-99ab-ed6c7624b4c1,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7126078Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"6bc6ce06-dac8-436c-9099-31fe0ec48da9","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"012dc24c-d907-4d17-87a6-684179b81ccc","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/6bc6ce06-dac8-436c-9099-31fe0ec48da9/ticks/636921832667076075","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"131979a4-2797-4d6a-99cb-177d4dd61497","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create + or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7076075Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1a3c4b56-f65e-4651-8133-e2767363ebed","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"c4059199-9240-48c7-9a5a-8a26b0a3370a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/1a3c4b56-f65e-4651-8133-e2767363ebed/ticks/636921832667026069","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"3ae9e915-8176-4265-90a6-9bba94b95868","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.7026069Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"1d474f3d-7543-4fd9-a13b-0b8ab051a32c","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"54794bc5-ffc9-411a-891d-c320055f0c89","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/1d474f3d-7543-4fd9-a13b-0b8ab051a32c/ticks/636921832666876074","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"b4d6530f-32d3-4bbd-adb7-eaef237966ec","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create + or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6876074Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"c5f98b19-14a3-49ed-84d6-047bec4fd211","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"16292122-7ef3-4c3c-923b-1e270ea1cd6b","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df/events/c5f98b19-14a3-49ed-84d6-047bec4fd211/ticks/636921832666276188","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"61b81d22-f476-4a0a-b992-e75f79352b3a","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update + Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:46.6276188Z","submissionTimestamp":"2019-04-30T01:08:00.0959338Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"09665fba-709a-4e82-ba96-645260173169","eventName":{"value":"EndRequest","localizedValue":"End + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/09665fba-709a-4e82-ba96-645260173169/ticks/636921832650753635","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:20.3019189Z","submissionTimestamp":"2019-04-16T21:28:42.1017349Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"238993a3-afa8-4ecc-97ce-0fa456d11455","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/238993a3-afa8-4ecc-97ce-0fa456d11455/ticks/636910468970169183","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:17.0169183Z","submissionTimestamp":"2019-04-16T21:28:32.0816776Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' + (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-30T01:07:45.0753635Z","submissionTimestamp":"2019-04-30T01:08:02.1041047Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1556586157","nbf":"1556586157","exp":"1556590057","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAA9MPcglqDEapo47GEgLS1dwUti6Ob9sfxmYvlJWNmP4aI6dAm7GN+0I8zmmOvb8cAbx88piwGkBFrrDZpBQB9gzGqTU1z4ImJT/JBfezKU4I=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"131.107.174.24","name":"Tosin + Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"QNh8pOwetUureYheU-kBAA","ver":"1.0"},"correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","description":"","eventDataId":"90ea0f6c-5ea6-4d0a-ae9b-b98787a51464","eventName":{"value":"BeginRequest","localizedValue":"Begin + request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"591209ec-6ae4-11e9-b0ad-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW/events/90ea0f6c-5ea6-4d0a-ae9b-b98787a51464/ticks/636921832614653662","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft + Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create + Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-30T01:07:41.4653662Z","submissionTimestamp":"2019-04-30T01:08:02.1031048Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' headers: cache-control: - no-cache content-length: - - '106791' + - '106959' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:30:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - vm create - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk - User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - azure-mgmt-monitor/0.5.2 Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-03-06T05%3A30%3A10Z%20and%20correlationId%20eq%20%27668b1ef7-b720-4e5e-b612-fdae9c97de71%27 - response: - body: - string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"c1fd8c67-c75b-4138-976f-7ad7d1736674","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/c1fd8c67-c75b-4138-976f-7ad7d1736674/ticks/636910469782996389","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"9ce69ce5-88a5-4c43-8522-8ff9daa0be8c","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:29:38.2996389Z","submissionTimestamp":"2019-04-16T21:29:56.1171772Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"9b3caea3-99ef-462c-b8e8-801f2d9adc91","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/9b3caea3-99ef-462c-b8e8-801f2d9adc91/ticks/636910469466637237","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"c77db4e2-4535-4537-80b4-1009213e2912","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:29:06.6637237Z","submissionTimestamp":"2019-04-16T21:29:21.0839286Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"77ea0021-3a19-4e9a-aa07-85572af1935c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"88ecdad6-5671-4508-bc4e-3b436848ee90","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/77ea0021-3a19-4e9a-aa07-85572af1935c/ticks/636910469348199667","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"f7c9b6ec-8e5b-47bd-a0e7-0702a3769fea"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:54.8199667Z","submissionTimestamp":"2019-04-16T21:29:12.1564131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"f19aeff6-9cfb-4c58-afca-5b13fdceb7bb","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/f19aeff6-9cfb-4c58-afca-5b13fdceb7bb/ticks/636910469345949593","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:54.5949593Z","submissionTimestamp":"2019-04-16T21:29:12.1564131Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"5c274548-d109-4fe3-a27e-9af61d448062","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"88ecdad6-5671-4508-bc4e-3b436848ee90","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize/events/5c274548-d109-4fe3-a27e-9af61d448062/ticks/636910469318499511","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aee048a5-33fd-473c-a61f-e0a9e8e50e9d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create - or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:51.8499511Z","submissionTimestamp":"2019-04-16T21:29:12.1554115Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"5be0c566-110d-4c1a-9b5d-794e052c590d","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/5be0c566-110d-4c1a-9b5d-794e052c590d/ticks/636910469249862231","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"d90ba5e9-a8af-4209-b667-aedac9ad2990","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:44.9862231Z","submissionTimestamp":"2019-04-16T21:29:06.1445893Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"097114d2-77f4-4c78-b329-5a3ba4765f16","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/097114d2-77f4-4c78-b329-5a3ba4765f16/ticks/636910469132014106","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"7d8af33f-e55a-451d-84a0-854923beab6c","responseBody":"{\"name\":\"vm-generalizeVMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"1fc74cc3-94c5-4e5b-a2b4-d6e2c566d480\",\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\",\"etag\":\"W/\\\"e23037c9-1989-40e0-a7d4-c01f57437de3\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:33.2014106Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"928586ba-a761-45b7-86d9-d4de73a8fe58","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/928586ba-a761-45b7-86d9-d4de73a8fe58/ticks/636910469117869078","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"bd240a5f-71fb-4485-8391-ae90d1d1d34f","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.7869078Z","submissionTimestamp":"2019-04-16T21:28:56.0630574Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b9584c39-1722-44ba-b97c-5bf9bf2ee080","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"a2725918-5527-4dca-ba7f-81a7505ac0c0","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/events/b9584c39-1722-44ba-b97c-5bf9bf2ee080/ticks/636910469116552928","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"61f3d938-4715-44ff-8984-e6182c28ca0d","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create - or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm-generalize\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.6552928Z","submissionTimestamp":"2019-04-16T21:28:54.0702734Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"63872d41-c763-4193-87be-5d1b03ef2b8b","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/63872d41-c763-4193-87be-5d1b03ef2b8b/ticks/636910469116293670","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"c674873a-b35d-47c7-a9f8-4826e69deed5","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.629367Z","submissionTimestamp":"2019-04-16T21:28:57.0664235Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a3d3d4bf-8ad0-4f81-be69-8a810edd3372","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/a3d3d4bf-8ad0-4f81-be69-8a810edd3372/ticks/636910469113828882","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"d504fa4f-a81c-4a9c-8e63-f667f3d9bd24","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:31.3828882Z","submissionTimestamp":"2019-04-16T21:28:55.0635303Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/92e27b18-cfe9-45d1-8fc6-e43ff6bffb6a/ticks/636910469060342985","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create - or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"6af3c889-a56a-4d42-ac12-950af9650654","responseBody":"{\"name\":\"vm-generalizeVNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"9c36476d-f843-4442-a8f6-45efae83def4\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm-generalizeSubnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/subnets/vm-generalizeSubnet\",\"etag\":\"W/\\\"89d22e1c-a617-44de-b144-608143765973\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:26.0342985Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"7514da9f-afb9-4647-930e-6d7e069b6a6c","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/7514da9f-afb9-4647-930e-6d7e069b6a6c/ticks/636910469059742968","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"4d85df4d-c94c-43fa-9582-55a94900ed86","responseBody":"{\"name\":\"vm-generalizePublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\",\"etag\":\"W/\\\"a5bcd388-617c-4eea-8e41-1144995b1908\\\"\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"b062219d-69c1-4b16-b4b8-2a2ebd48ea95\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.9742968Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"89218770-733a-4fb6-8016-d2a1de1e1198","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/89218770-733a-4fb6-8016-d2a1de1e1198/ticks/636910469058293000","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.8293Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"2427a658-4900-4f53-8c25-669100f55318","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/2427a658-4900-4f53-8c25-669100f55318/ticks/636910469057642911","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7642911Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"139f8be1-4b71-4482-bbb8-b044397fec60","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/139f8be1-4b71-4482-bbb8-b044397fec60/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"9ad1a0f7-cafd-4cf1-9a84-f9b159da47fb"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted - (HTTP Status Code: 202)"},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"236ebe51-8a13-446a-8c16-581f2ac31123","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/236ebe51-8a13-446a-8c16-581f2ac31123/ticks/636910469057242756","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"21f69afd-46cb-4d7a-a2c6-d1d2a9d8d427","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource - provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:25.7242756Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"471901df-f2c0-46db-85c9-21c971cec0b8","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/471901df-f2c0-46db-85c9-21c971cec0b8/ticks/636910469055743167","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"4498f7ed-785e-42f2-b8c6-f1576d2be918","responseBody":"{\"name\":\"vm-generalizeNSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"ec54ef5f-c2cd-4c6e-a360-dbf67f629da0\",\"securityRules\":[{\"name\":\"default-allow-ssh\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/securityRules/default-allow-ssh\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow - outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"533a52b7-73f0-40ff-8bea-b5ebde2f7412\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny - all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:25.5743167Z","submissionTimestamp":"2019-04-16T21:28:44.1133261Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"67f5f150-c97a-4e8d-9b94-5be0f5439024","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/67f5f150-c97a-4e8d-9b94-5be0f5439024/ticks/636910469029042960","level":"Warning","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus","ancestors":"72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}},{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"storageEncryptionMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"655cb504-bcee-4362-bd4c-402e6aa38759\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.904296Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b59b62a3-ada6-43c1-834c-17a7c4efd943","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"b0671b13-6061-48e8-9c60-315cb66e1858","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG/events/b59b62a3-ada6-43c1-834c-17a7c4efd943/ticks/636910469028942828","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"e80d67df-cf5c-42d2-8c6a-a7200273e055","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create - or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"default-allow-ssh\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"22\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8942828Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"fa8edc81-7d51-4aa4-b28f-1babdd72f52a","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1d239163-1606-4b3c-b512-2a7df820347e","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb/events/fa8edc81-7d51-4aa4-b28f-1babdd72f52a/ticks/636910469028143185","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"8f4d2837-a7a4-409d-a756-a2bbeac06ed5","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update - Storage Account"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.8143185Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"b2b2a680-f30b-41ee-9354-8fc6192987e7","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"d5bc6cd9-2867-45a4-b19d-4d231b056e4a","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP/events/b2b2a680-f30b-41ee-9354-8fc6192987e7/ticks/636910469026893150","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"3456331c-4635-40c5-a914-922bc9674c1d","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create - or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.689315Z","submissionTimestamp":"2019-04-16T21:28:44.1123263Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"0905be32-d5aa-4d5f-a49a-38bf37099e15","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"7752c97a-3155-4669-b80b-3dfd49ac9a44","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET/events/0905be32-d5aa-4d5f-a49a-38bf37099e15/ticks/636910469025343191","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"153dca38-1d25-4202-af4c-feb34b75c327","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\":\"vm-generalizeSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:22.5343191Z","submissionTimestamp":"2019-04-16T21:28:44.1113246Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"a9c3efab-48ea-4721-852e-af1edc38200a","eventName":{"value":"EndRequest","localizedValue":"End - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/a9c3efab-48ea-4721-852e-af1edc38200a/ticks/636910469003019189","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created - (HTTP Status Code: 201)"},"eventTimestamp":"2019-04-16T21:28:20.3019189Z","submissionTimestamp":"2019-04-16T21:28:42.1017349Z","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_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1"},"caller":"oladewal@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1555449112","nbf":"1555449112","exp":"1555453012","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/d12dc20d-54ce-4951-abd5-5f531f1dbca2/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AVQAq/8LAAAAhDuCB1yMyYc2PxN1Yhi2TPa6us5Zodh3fahTyDdanb2q1/35awtfkczLAqyR1OsmchR0IpBLlJYFXr8qh2imGV6mWc1/xbEGO3caTw0mObw=","http://schemas.microsoft.com/claims/authnmethodsreferences":"pwd,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Adewale","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Tosin","ipaddr":"167.220.2.24","name":"Tosin - Adewale","http://schemas.microsoft.com/identity/claims/objectidentifier":"d12dc20d-54ce-4951-abd5-5f531f1dbca2","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32751642","puid":"10037FFEACE8925D","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"FJtyFHiLGTRRtUm2S1jp0T-c6F1bO-_JHd3FZ9firI0","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"oladewal@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"oladewal@microsoft.com","uti":"85xT3kw8002dygQRt3UGAA","ver":"1.0"},"correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","description":"","eventDataId":"238993a3-afa8-4ecc-97ce-0fa456d11455","eventName":{"value":"BeginRequest","localizedValue":"Begin - request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"8b22797a-608e-11e9-a958-88e9fe6691ee","clientIpAddress":"131.107.147.24","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1/events/238993a3-afa8-4ecc-97ce-0fa456d11455/ticks/636910468970169183","level":"Informational","resourceGroupName":"cli_test_generalize_vm000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft - Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create - Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-04-16T21:28:17.0169183Z","submissionTimestamp":"2019-04-16T21:28:32.0816776Z","subscriptionId":"00977cdb-163f-435f-9c32-39ec8ae61f4d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}' - headers: - cache-control: - - no-cache - content-length: - - '106791' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 16 Apr 2019 21:30:11 GMT + - Tue, 30 Apr 2019 01:09:15 GMT expires: - '-1' pragma: @@ -1740,10 +1529,10 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461567867002792?api-version=2018-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586450204220395837?api-version=2018-05-01 response: body: string: '{"status":"Succeeded"}' @@ -1755,7 +1544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:30:20 GMT + - Tue, 30 Apr 2019 01:09:15 GMT expires: - '-1' pragma: @@ -1783,22 +1572,22 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","name":"vm_deploy_YWrk5ppxbBQOOMqOksHSWQ9ZT2AdcmF1","properties":{"templateHash":"5986482876557839745","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:29:56.229948Z","duration":"PT1M37.4525928S","correlationId":"668b1ef7-b720-4e5e-b612-fdae9c97de71","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm-generalizeVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-generalizeNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-generalizePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage29c6a8d2a5f0cb"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-generalize"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstorage29c6a8d2a5f0cb"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Resources/deployments/vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","name":"vm_deploy_bJNQYFpsSHtqrXGpIwZNcwnXMRJW4NqW","properties":{"templateHash":"15136744677087758576","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-30T01:09:07.9943637Z","duration":"PT1M24.5563164S","correlationId":"ce9fa9b2-4e63-4e79-ae01-911ea6a1f3d1","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"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_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm-generalizeVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm-generalizeNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm-generalizePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstoragea81479efb078df"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm-generalizeVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm-generalize"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/virtualNetworks/vm-generalizeVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Storage/storageAccounts/vhdstoragea81479efb078df"}]}}' headers: cache-control: - no-cache content-length: - - '4621' + - '4623' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:30:21 GMT + - Tue, 30 Apr 2019 01:09:15 GMT expires: - '-1' pragma: @@ -1826,22 +1615,22 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize?$expand=instanceView&api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"71b63b6c-0326-4c77-898b-ebfc18592cb8\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"78d8b697-b466-4053-b2ee-68f9c02a95c4\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ ,\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n\ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"name\": \"osdisk_29c6a8d2a5\",\r\n \"createOption\": \"FromImage\"\ - ,\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage29c6a8d2a5f0cb.blob.core.windows.net/vhds/osdisk_29c6a8d2a5.vhd\"\ + \ \"name\": \"osdisk_a81479efb0\",\r\n \"createOption\": \"FromImage\"\ + ,\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstoragea81479efb078df.blob.core.windows.net/vhds/osdisk_a81479efb0.vhd\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\"\ : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ : {\r\n \"computerName\": \"vm-generalize\",\r\n \"adminUsername\"\ @@ -1853,20 +1642,20 @@ interactions: }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ : {\r\n \"computerName\": \"vm-generalize\",\r\n \"osName\": \"\ ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \ - \ \"vmAgentVersion\": \"2.2.38\",\r\n \"statuses\": [\r\n \ + \ \"vmAgentVersion\": \"2.2.40\",\r\n \"statuses\": [\r\n \ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ ,\r\n \"message\": \"Guest Agent is running\",\r\n \"\ - time\": \"2019-04-16T21:30:21+00:00\"\r\n }\r\n ],\r\n \ + time\": \"2019-04-30T01:09:14+00:00\"\r\n }\r\n ],\r\n \ \ \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n \ - \ {\r\n \"name\": \"osdisk_29c6a8d2a5\",\r\n \"statuses\"\ + \ {\r\n \"name\": \"osdisk_a81479efb0\",\r\n \"statuses\"\ : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\ - : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-16T21:28:53.9118019+00:00\"\ + : \"Provisioning succeeded\",\r\n \"time\": \"2019-04-30T01:08:07.3144409+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\": \"2019-04-16T21:29:52.8809204+00:00\"\ + \ succeeded\",\r\n \"time\": \"2019-04-30T01:09:05.1920592+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\"\ @@ -1880,7 +1669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:30:21 GMT + - Tue, 30 Apr 2019 01:09:16 GMT expires: - '-1' pragma: @@ -1897,7 +1686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31921 + - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31980 status: code: 200 message: OK @@ -1915,8 +1704,8 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1924,12 +1713,12 @@ interactions: response: body: string: "{\r\n \"name\": \"vm-generalizeVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic\"\ - ,\r\n \"etag\": \"W/\\\"1213edfb-52b2-4551-988c-a0715e8c9aa6\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"79585ee5-490e-4701-8d65-c569850b2bd9\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1fc74cc3-94c5-4e5b-a2b4-d6e2c566d480\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a10110a8-67d7-46b4-8b6d-7f42fc11ebdb\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm-generalize\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\"\ - ,\r\n \"etag\": \"W/\\\"1213edfb-52b2-4551-988c-a0715e8c9aa6\\\"\"\ + ,\r\n \"etag\": \"W/\\\"79585ee5-490e-4701-8d65-c569850b2bd9\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ @@ -1939,8 +1728,8 @@ interactions: \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\": \"nvdtnhcd5bbejkhwixx03a444e.dx.internal.cloudapp.net\"\ - \r\n },\r\n \"macAddress\": \"00-0D-3A-31-E8-29\",\r\n \"enableAcceleratedNetworking\"\ + internalDomainNameSuffix\": \"a0eo1bnp4afedddnnijqrd140b.dx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-30-F7-59\",\r\n \"enableAcceleratedNetworking\"\ : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/networkSecurityGroups/vm-generalizeNSG\"\ \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ @@ -1955,9 +1744,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:30:22 GMT + - Tue, 30 Apr 2019 01:09:16 GMT etag: - - W/"1213edfb-52b2-4551-988c-a0715e8c9aa6" + - W/"79585ee5-490e-4701-8d65-c569850b2bd9" expires: - '-1' pragma: @@ -1990,8 +1779,8 @@ interactions: ParameterSetName: - -g -n --admin-username --image --admin-password --authentication-type --use-unmanaged-disk User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + networkmanagementclient/2.6.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1999,10 +1788,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vm-generalizePublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Network/publicIPAddresses/vm-generalizePublicIP\"\ - ,\r\n \"etag\": \"W/\\\"6404f7e3-4ade-4b87-94d2-0d32654774d1\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"2c234527-0e4a-49fa-b91f-f181943ee96a\\\"\",\r\n \ \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\ - \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b062219d-69c1-4b16-b4b8-2a2ebd48ea95\"\ - ,\r\n \"ipAddress\": \"40.112.177.208\",\r\n \"publicIPAddressVersion\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b2771ace-6700-4f25-b2ab-e43c31897d00\"\ + ,\r\n \"ipAddress\": \"104.42.37.182\",\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_generalize_vm000001/providers/Microsoft.Network/networkInterfaces/vm-generalizeVMNic/ipConfigurations/ipconfigvm-generalize\"\ @@ -2013,13 +1802,13 @@ interactions: cache-control: - no-cache content-length: - - '1063' + - '1062' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:30:22 GMT + - Tue, 30 Apr 2019 01:09:17 GMT etag: - - W/"6404f7e3-4ade-4b87-94d2-0d32654774d1" + - W/"2c234527-0e4a-49fa-b91f-f181943ee96a" expires: - '-1' pragma: @@ -2054,8 +1843,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -2065,17 +1854,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/17aeba57-9bac-4d80-80a6-9e658d714ef4?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c7cf146f-703b-4b76-b361-f234f9051b60?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 16 Apr 2019 21:30:22 GMT + - Tue, 30 Apr 2019 01:09:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/17aeba57-9bac-4d80-80a6-9e658d714ef4?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c7cf146f-703b-4b76-b361-f234f9051b60?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -2086,7 +1875,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1186 + - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2106,15 +1895,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/17aeba57-9bac-4d80-80a6-9e658d714ef4?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c7cf146f-703b-4b76-b361-f234f9051b60?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:30:23.4123859+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:30:34.4593461+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"17aeba57-9bac-4d80-80a6-9e658d714ef4\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:09:18.2082695+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:09:25.4585964+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"c7cf146f-703b-4b76-b361-f234f9051b60\"\r\n}" headers: cache-control: - no-cache @@ -2123,7 +1912,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:30:55 GMT + - Tue, 30 Apr 2019 01:09:48 GMT expires: - '-1' pragma: @@ -2140,7 +1929,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29856 + - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29987 status: code: 200 message: OK @@ -2160,8 +1949,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -2175,7 +1964,7 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2019 21:30:56 GMT + - Tue, 30 Apr 2019 01:09:49 GMT expires: - '-1' pragma: @@ -2188,9 +1977,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1185 + - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2208,22 +1997,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"71b63b6c-0326-4c77-898b-ebfc18592cb8\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"78d8b697-b466-4053-b2ee-68f9c02a95c4\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ ,\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n\ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"name\": \"osdisk_29c6a8d2a5\",\r\n \"createOption\": \"FromImage\"\ - ,\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage29c6a8d2a5f0cb.blob.core.windows.net/vhds/osdisk_29c6a8d2a5.vhd\"\ + \ \"name\": \"osdisk_a81479efb0\",\r\n \"createOption\": \"FromImage\"\ + ,\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstoragea81479efb078df.blob.core.windows.net/vhds/osdisk_a81479efb0.vhd\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\"\ : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ : {\r\n \"computerName\": \"vm-generalize\",\r\n \"adminUsername\"\ @@ -2244,7 +2033,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:30:57 GMT + - Tue, 30 Apr 2019 01:09:50 GMT expires: - '-1' pragma: @@ -2261,7 +2050,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31918 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31978 status: code: 200 message: OK @@ -2284,8 +2073,8 @@ interactions: ParameterSetName: - -g -n --vhd-name-prefix User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -2295,17 +2084,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/adb01307-6118-4d5e-a58e-872941d7391b?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3088b0f6-abbd-4b64-a0e8-c7fc86f5071b?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 16 Apr 2019 21:30:57 GMT + - Tue, 30 Apr 2019 01:09:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/adb01307-6118-4d5e-a58e-872941d7391b?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3088b0f6-abbd-4b64-a0e8-c7fc86f5071b?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -2316,9 +2105,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1184 + - Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1196 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -2336,29 +2125,29 @@ interactions: ParameterSetName: - -g -n --vhd-name-prefix User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/adb01307-6118-4d5e-a58e-872941d7391b?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3088b0f6-abbd-4b64-a0e8-c7fc86f5071b?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:30:57.8512495+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:30:58.1168764+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2019-04-30T01:09:50.7564234+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:09:51.0064301+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\"\ ,\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"\ },\"vmSize\":{\"type\":\"string\",\"defaultValue\":\"Standard_DS1_v2\"},\"\ adminUserName\":{\"type\":\"string\"},\"adminPassword\":{\"type\":\"securestring\"\ },\"networkInterfaceId\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\"\ :\"2019-03-01\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('vmSize')]\"\ - },\"storageProfile\":{\"osDisk\":{\"osType\":\"Linux\",\"name\":\"vmtest-osDisk.71b63b6c-0326-4c77-898b-ebfc18592cb8.vhd\"\ - ,\"createOption\":\"FromImage\",\"image\":{\"uri\":\"https://vhdstorage29c6a8d2a5f0cb.blob.core.windows.net/system/Microsoft.Compute/Images/vhds/vmtest-osDisk.71b63b6c-0326-4c77-898b-ebfc18592cb8.vhd\"\ - },\"vhd\":{\"uri\":\"https://vhdstorage29c6a8d2a5f0cb.blob.core.windows.net/vmcontainerbf58e7a4-ae2d-4649-8139-82c289e0be4c/osDisk.bf58e7a4-ae2d-4649-8139-82c289e0be4c.vhd\"\ + },\"storageProfile\":{\"osDisk\":{\"osType\":\"Linux\",\"name\":\"vmtest-osDisk.78d8b697-b466-4053-b2ee-68f9c02a95c4.vhd\"\ + ,\"createOption\":\"FromImage\",\"image\":{\"uri\":\"https://vhdstoragea81479efb078df.blob.core.windows.net/system/Microsoft.Compute/Images/vhds/vmtest-osDisk.78d8b697-b466-4053-b2ee-68f9c02a95c4.vhd\"\ + },\"vhd\":{\"uri\":\"https://vhdstoragea81479efb078df.blob.core.windows.net/vmcontainer1e13d9ad-917e-403d-84d2-e2fa9105cf3f/osDisk.1e13d9ad-917e-403d-84d2-e2fa9105cf3f.vhd\"\ },\"caching\":\"ReadWrite\"}},\"osProfile\":{\"computerName\":\"[parameters('vmName')]\"\ ,\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"\ [parameters('adminPassword')]\"},\"networkProfile\":{\"networkInterfaces\"\ :[{\"id\":\"[parameters('networkInterfaceId')]\"}]},\"provisioningState\"\ :0},\"type\":\"Microsoft.Compute/virtualMachines\",\"location\":\"westus\"\ - ,\"name\":\"[parameters('vmName')]\"}]}\r\n },\r\n \"name\": \"adb01307-6118-4d5e-a58e-872941d7391b\"\ + ,\"name\":\"[parameters('vmName')]\"}]}\r\n },\r\n \"name\": \"3088b0f6-abbd-4b64-a0e8-c7fc86f5071b\"\ \r\n}" headers: cache-control: @@ -2368,7 +2157,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:31:28 GMT + - Tue, 30 Apr 2019 01:10:20 GMT expires: - '-1' pragma: @@ -2385,7 +2174,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29844 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29984 status: code: 200 message: OK @@ -2403,13 +2192,13 @@ interactions: ParameterSetName: - -g -n --vhd-name-prefix User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/adb01307-6118-4d5e-a58e-872941d7391b?monitor=true&api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3088b0f6-abbd-4b64-a0e8-c7fc86f5071b?monitor=true&api-version=2019-03-01 response: body: - string: '{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json","contentVersion":"1.0.0.0","parameters":{"vmName":{"type":"string"},"vmSize":{"type":"string","defaultValue":"Standard_DS1_v2"},"adminUserName":{"type":"string"},"adminPassword":{"type":"securestring"},"networkInterfaceId":{"type":"string"}},"resources":[{"apiVersion":"2019-03-01","properties":{"hardwareProfile":{"vmSize":"[parameters(''vmSize'')]"},"storageProfile":{"osDisk":{"osType":"Linux","name":"vmtest-osDisk.71b63b6c-0326-4c77-898b-ebfc18592cb8.vhd","createOption":"FromImage","image":{"uri":"https://vhdstorage29c6a8d2a5f0cb.blob.core.windows.net/system/Microsoft.Compute/Images/vhds/vmtest-osDisk.71b63b6c-0326-4c77-898b-ebfc18592cb8.vhd"},"vhd":{"uri":"https://vhdstorage29c6a8d2a5f0cb.blob.core.windows.net/vmcontainerbf58e7a4-ae2d-4649-8139-82c289e0be4c/osDisk.bf58e7a4-ae2d-4649-8139-82c289e0be4c.vhd"},"caching":"ReadWrite"}},"osProfile":{"computerName":"[parameters(''vmName'')]","adminUsername":"[parameters(''adminUsername'')]","adminPassword":"[parameters(''adminPassword'')]"},"networkProfile":{"networkInterfaces":[{"id":"[parameters(''networkInterfaceId'')]"}]},"provisioningState":0},"type":"Microsoft.Compute/virtualMachines","location":"westus","name":"[parameters(''vmName'')]"}]}' + string: '{"$schema":"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json","contentVersion":"1.0.0.0","parameters":{"vmName":{"type":"string"},"vmSize":{"type":"string","defaultValue":"Standard_DS1_v2"},"adminUserName":{"type":"string"},"adminPassword":{"type":"securestring"},"networkInterfaceId":{"type":"string"}},"resources":[{"apiVersion":"2019-03-01","properties":{"hardwareProfile":{"vmSize":"[parameters(''vmSize'')]"},"storageProfile":{"osDisk":{"osType":"Linux","name":"vmtest-osDisk.78d8b697-b466-4053-b2ee-68f9c02a95c4.vhd","createOption":"FromImage","image":{"uri":"https://vhdstoragea81479efb078df.blob.core.windows.net/system/Microsoft.Compute/Images/vhds/vmtest-osDisk.78d8b697-b466-4053-b2ee-68f9c02a95c4.vhd"},"vhd":{"uri":"https://vhdstoragea81479efb078df.blob.core.windows.net/vmcontainer1e13d9ad-917e-403d-84d2-e2fa9105cf3f/osDisk.1e13d9ad-917e-403d-84d2-e2fa9105cf3f.vhd"},"caching":"ReadWrite"}},"osProfile":{"computerName":"[parameters(''vmName'')]","adminUsername":"[parameters(''adminUsername'')]","adminPassword":"[parameters(''adminPassword'')]"},"networkProfile":{"networkInterfaces":[{"id":"[parameters(''networkInterfaceId'')]"}]},"provisioningState":0},"type":"Microsoft.Compute/virtualMachines","location":"westus","name":"[parameters(''vmName'')]"}]}' headers: cache-control: - no-cache @@ -2418,7 +2207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:31:28 GMT + - Tue, 30 Apr 2019 01:10:21 GMT expires: - '-1' pragma: @@ -2435,7 +2224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29843 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29983 status: code: 200 message: OK @@ -2453,22 +2242,22 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize?api-version=2019-03-01 response: body: - string: "{\r\n \"properties\": {\r\n \"vmId\": \"71b63b6c-0326-4c77-898b-ebfc18592cb8\"\ + string: "{\r\n \"properties\": {\r\n \"vmId\": \"78d8b697-b466-4053-b2ee-68f9c02a95c4\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\"\ ,\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n\ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \ - \ \"name\": \"osdisk_29c6a8d2a5\",\r\n \"createOption\": \"FromImage\"\ - ,\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage29c6a8d2a5f0cb.blob.core.windows.net/vhds/osdisk_29c6a8d2a5.vhd\"\ + \ \"name\": \"osdisk_a81479efb0\",\r\n \"createOption\": \"FromImage\"\ + ,\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstoragea81479efb078df.blob.core.windows.net/vhds/osdisk_a81479efb0.vhd\"\ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\"\ : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ : {\r\n \"computerName\": \"vm-generalize\",\r\n \"adminUsername\"\ @@ -2489,7 +2278,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:31:29 GMT + - Tue, 30 Apr 2019 01:10:21 GMT expires: - '-1' pragma: @@ -2506,7 +2295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31914 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31979 status: code: 200 message: OK @@ -2524,15 +2313,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_generalize_vm000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001","name":"cli_test_generalize_vm000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:28:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001","name":"cli_test_generalize_vm000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-30T01:07:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2541,7 +2330,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:31:29 GMT + - Tue, 30 Apr 2019 01:10:21 GMT expires: - '-1' pragma: @@ -2557,7 +2346,8 @@ interactions: message: OK - request: body: 'b''{"location": "westus", "tags": {}, "properties": {"sourceVirtualMachine": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"}}}''' + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize"}, + "hyperVGeneration": "V1"}}''' headers: Accept: - application/json @@ -2568,43 +2358,44 @@ interactions: Connection: - keep-alive Content-Length: - - '286' + - '312' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize\"\ \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage29c6a8d2a5f0cb.blob.core.windows.net/vhds/osdisk_29c6a8d2a5.vhd\"\ + \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstoragea81479efb078df.blob.core.windows.net/vhds/osdisk_a81479efb0.vhd\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage\"\ + \ \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage\"\ ,\r\n \"name\": \"myImage\"\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/26531f99-50d6-46e9-9f73-b3d0b42a4105?api-version=2018-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c096cddc-ebe6-4a49-988b-a2d35c724ff9?api-version=2019-03-01 cache-control: - no-cache content-length: - - '978' + - '1009' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:31:35 GMT + - Tue, 30 Apr 2019 01:10:28 GMT expires: - '-1' pragma: @@ -2617,7 +2408,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;193 + - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2637,24 +2428,24 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/26531f99-50d6-46e9-9f73-b3d0b42a4105?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c096cddc-ebe6-4a49-988b-a2d35c724ff9?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:31:30.2889496+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:31:40.5077794+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"26531f99-50d6-46e9-9f73-b3d0b42a4105\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-30T01:10:23.0233127+00:00\",\r\n \"\ + endTime\": \"2019-04-30T01:10:53.399487+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"c096cddc-ebe6-4a49-988b-a2d35c724ff9\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:32:05 GMT + - Tue, 30 Apr 2019 01:10:57 GMT expires: - '-1' pragma: @@ -2671,7 +2462,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29831 + - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29981 status: code: 200 message: OK @@ -2689,31 +2480,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/virtualMachines/vm-generalize\"\ \r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \ - \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstorage29c6a8d2a5f0cb.blob.core.windows.net/vhds/osdisk_29c6a8d2a5.vhd\"\ + \ \"diskSizeGB\": 30,\r\n \"blobUri\": \"https://vhdstoragea81479efb078df.blob.core.windows.net/vhds/osdisk_a81479efb0.vhd\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \ - \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\"\ - ,\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage\"\ + \ \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_generalize_vm000001/providers/Microsoft.Compute/images/myImage\"\ ,\r\n \"name\": \"myImage\"\r\n}" headers: cache-control: - no-cache content-length: - - '979' + - '1010' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:32:05 GMT + - Tue, 30 Apr 2019 01:10:58 GMT expires: - '-1' pragma: @@ -2730,7 +2522,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1786 + - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1785 status: code: 200 message: OK @@ -2750,8 +2542,8 @@ interactions: ParameterSetName: - --name --yes --no-wait User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: DELETE @@ -2765,11 +2557,11 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2019 21:32:06 GMT + - Tue, 30 Apr 2019 01:10:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGR0VORVJBTElaRTo1RlZNUEZUT1I3T1ZQTklCU1lETjRDU3w5OUIwMTMwM0E0QTBENEY0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGR0VORVJBTElaRTo1RlZNNEJUM0pPSEZNRlhGVVhNSk9MQnxGRTc0RUE2NDkxRjM1QUY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache strict-transport-security: @@ -2777,7 +2569,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_managed_disk.yaml b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_managed_disk.yaml index 9475fa7e32f..12e9957f46c 100644 --- a/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_managed_disk.yaml +++ b/src/command_modules/azure-cli-vm/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_managed_disk.yaml @@ -1,7 +1,7 @@ interactions: - request: body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-04-16T21:21:42Z"}}' + "date": "2019-04-29T22:20:01Z"}}' headers: Accept: - application/json @@ -18,15 +18,15 @@ interactions: ParameterSetName: - --location --name --tag User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:21:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:20:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -35,7 +35,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:21:43 GMT + - Mon, 29 Apr 2019 22:20:01 GMT expires: - '-1' pragma: @@ -63,15 +63,15 @@ interactions: ParameterSetName: - -g -n --size-gb --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:21:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:20:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -80,7 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:21:44 GMT + - Mon, 29 Apr 2019 22:20:05 GMT expires: - '-1' pragma: @@ -96,7 +96,8 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {"tag1": "d1"}, "sku": {"name": "Premium_LRS"}, - "properties": {"creationData": {"createOption": "Empty"}, "diskSizeGB": 1}}' + "properties": {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, + "diskSizeGB": 1}}' headers: Accept: - application/json @@ -107,14 +108,14 @@ interactions: Connection: - keep-alive Content-Length: - - '154' + - '180' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --size-gb --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT @@ -122,25 +123,26 @@ interactions: response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"\ - properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\ - \r\n },\r\n \"diskSizeGB\": 1,\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"westus\",\r\n\ - \ \"tags\": {\r\n \"tag1\": \"d1\"\r\n },\r\n \"name\": \"d1\"\r\n}" + properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\"\ + : {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\":\ + \ 1,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\"\ + : true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\"\ + : \"d1\"\r\n },\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/452877c9-d2ef-431a-90ce-c944828240cd?api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c004d123-016b-4eb3-a9a8-cf0df295ae72?api-version=2018-09-30 cache-control: - no-cache content-length: - - '301' + - '332' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:21:45 GMT + - Mon, 29 Apr 2019 22:20:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/452877c9-d2ef-431a-90ce-c944828240cd?monitor=true&api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c004d123-016b-4eb3-a9a8-cf0df295ae72?monitor=true&api-version=2018-09-30 pragma: - no-cache server: @@ -151,9 +153,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 + - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -171,31 +173,32 @@ interactions: ParameterSetName: - -g -n --size-gb --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/452877c9-d2ef-431a-90ce-c944828240cd?api-version=2018-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c004d123-016b-4eb3-a9a8-cf0df295ae72?api-version=2018-09-30 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:21:45.9668632+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:21:46.170009+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2019-04-29T22:20:05.9605863+00:00\",\r\n \"\ + endTime\": \"2019-04-29T22:20:06.1637102+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\"sku\":{\"name\":\"Premium_LRS\"\ - ,\"tier\":\"Premium\"},\"properties\":{\"creationData\":{\"createOption\"\ - :\"Empty\"},\"diskSizeGB\":1,\"diskIOPSReadWrite\":120,\"diskMBpsReadWrite\"\ - :25,\"timeCreated\":\"2019-04-16T21:21:45.9668632+00:00\",\"provisioningState\"\ - :\"Succeeded\",\"diskState\":\"Unattached\"},\"type\":\"Microsoft.Compute/disks\"\ - ,\"location\":\"westus\",\"tags\":{\"tag1\":\"d1\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ - ,\"name\":\"d1\"}\r\n },\r\n \"name\": \"452877c9-d2ef-431a-90ce-c944828240cd\"\ + ,\"tier\":\"Premium\"},\"properties\":{\"hyperVGeneration\":\"V1\",\"creationData\"\ + :{\"createOption\":\"Empty\"},\"diskSizeGB\":1,\"diskIOPSReadWrite\":120,\"\ + diskMBpsReadWrite\":25,\"timeCreated\":\"2019-04-29T22:20:05.9605863+00:00\"\ + ,\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\"\ + :\"Microsoft.Compute/disks\",\"location\":\"westus\",\"tags\":{\"tag1\":\"\ + d1\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + ,\"name\":\"d1\"}\r\n },\r\n \"name\": \"c004d123-016b-4eb3-a9a8-cf0df295ae72\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '768' + - '793' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:16 GMT + - Mon, 29 Apr 2019 22:20:35 GMT expires: - '-1' pragma: @@ -212,7 +215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399984 + - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399998 status: code: 200 message: OK @@ -230,30 +233,31 @@ interactions: ParameterSetName: - -g -n --size-gb --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2018-09-30 response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\"\ - : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n\ - \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 1,\r\n\ - \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \ - \ \"timeCreated\": \"2019-04-16T21:21:45.9668632+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 \"tag1\": \"d1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\":\ + \ \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 1,\r\n \"diskIOPSReadWrite\": 120,\r\n\ + \ \"diskMBpsReadWrite\": 25,\r\n \"timeCreated\": \"2019-04-29T22:20:05.9605863+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 \"tag1\": \"d1\"\r\n },\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ ,\r\n \"name\": \"d1\"\r\n}" headers: cache-control: - no-cache content-length: - - '678' + - '709' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:16 GMT + - Mon, 29 Apr 2019 22:20:37 GMT expires: - '-1' pragma: @@ -270,7 +274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39984 + - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39984 status: code: 200 message: OK @@ -288,8 +292,8 @@ interactions: ParameterSetName: - -g -n --size-gb --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -297,23 +301,24 @@ interactions: response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\"\ - : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n\ - \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 1,\r\n\ - \ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \ - \ \"timeCreated\": \"2019-04-16T21:21:45.9668632+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 \"tag1\": \"d1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\":\ + \ \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 1,\r\n \"diskIOPSReadWrite\": 120,\r\n\ + \ \"diskMBpsReadWrite\": 25,\r\n \"timeCreated\": \"2019-04-29T22:20:05.9605863+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 \"tag1\": \"d1\"\r\n },\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ ,\r\n \"name\": \"d1\"\r\n}" headers: cache-control: - no-cache content-length: - - '678' + - '709' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:17 GMT + - Mon, 29 Apr 2019 22:20:37 GMT expires: - '-1' pragma: @@ -330,14 +335,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39983 + - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39983 status: code: 200 message: OK - request: body: '{"location": "westus", "tags": {"tag1": "d1"}, "sku": {"name": "Standard_LRS"}, - "properties": {"creationData": {"createOption": "Empty"}, "diskSizeGB": 10, - "diskIOPSReadWrite": 120, "diskMBpsReadWrite": 25}}' + "properties": {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, + "diskSizeGB": 10, "diskIOPSReadWrite": 120, "diskMBpsReadWrite": 25}}' headers: Accept: - application/json @@ -348,14 +353,14 @@ interactions: Connection: - keep-alive Content-Length: - - '207' + - '233' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --size-gb --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT @@ -363,25 +368,26 @@ interactions: response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"\ - properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\ - \r\n },\r\n \"diskSizeGB\": 10,\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"westus\",\r\n\ - \ \"tags\": {\r\n \"tag1\": \"d1\"\r\n },\r\n \"name\": \"d1\"\r\n}" + properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\"\ + : {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\":\ + \ 10,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\"\ + : true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\"\ + : \"d1\"\r\n },\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/c913ab29-d0bb-4cbd-b9db-6a3d1959b68a?api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ccef2657-fdaa-4429-ae00-0e54b7aee9f9?api-version=2018-09-30 cache-control: - no-cache content-length: - - '303' + - '334' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:17 GMT + - Mon, 29 Apr 2019 22:20:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c913ab29-d0bb-4cbd-b9db-6a3d1959b68a?monitor=true&api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ccef2657-fdaa-4429-ae00-0e54b7aee9f9?monitor=true&api-version=2018-09-30 pragma: - no-cache server: @@ -392,7 +398,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7996 + - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -412,31 +418,32 @@ interactions: ParameterSetName: - -g -n --size-gb --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c913ab29-d0bb-4cbd-b9db-6a3d1959b68a?api-version=2018-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/ccef2657-fdaa-4429-ae00-0e54b7aee9f9?api-version=2018-09-30 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:22:17.9889345+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:22:18.2077115+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2019-04-29T22:20:38.2760602+00:00\",\r\n \"\ + endTime\": \"2019-04-29T22:20:38.4323094+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\"sku\":{\"name\":\"Standard_LRS\"\ - ,\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\"\ - :\"Empty\"},\"diskSizeGB\":10,\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\"\ - :60,\"timeCreated\":\"2019-04-16T21:21:45.9668632+00:00\",\"provisioningState\"\ - :\"Succeeded\",\"diskState\":\"Unattached\"},\"type\":\"Microsoft.Compute/disks\"\ - ,\"location\":\"westus\",\"tags\":{\"tag1\":\"d1\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ - ,\"name\":\"d1\"}\r\n },\r\n \"name\": \"c913ab29-d0bb-4cbd-b9db-6a3d1959b68a\"\ + ,\"tier\":\"Standard\"},\"properties\":{\"hyperVGeneration\":\"V1\",\"creationData\"\ + :{\"createOption\":\"Empty\"},\"diskSizeGB\":10,\"diskIOPSReadWrite\":500,\"\ + diskMBpsReadWrite\":60,\"timeCreated\":\"2019-04-29T22:20:05.9605863+00:00\"\ + ,\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\"\ + :\"Microsoft.Compute/disks\",\"location\":\"westus\",\"tags\":{\"tag1\":\"\ + d1\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + ,\"name\":\"d1\"}\r\n },\r\n \"name\": \"ccef2657-fdaa-4429-ae00-0e54b7aee9f9\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '772' + - '796' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:48 GMT + - Mon, 29 Apr 2019 22:21:05 GMT expires: - '-1' pragma: @@ -453,7 +460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399975 + - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399996 status: code: 200 message: OK @@ -471,30 +478,31 @@ interactions: ParameterSetName: - -g -n --size-gb --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2018-09-30 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\": 10,\r\ - \n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \ - \ \"timeCreated\": \"2019-04-16T21:21:45.9668632+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 \"tag1\": \"d1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + : \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\"\ + : \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n\ + \ \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2019-04-29T22:20:05.9605863+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 \"tag1\": \"d1\"\r\n },\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ ,\r\n \"name\": \"d1\"\r\n}" headers: cache-control: - no-cache content-length: - - '681' + - '712' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:22:48 GMT + - Mon, 29 Apr 2019 22:21:06 GMT expires: - '-1' pragma: @@ -511,7 +519,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39979 + - Microsoft.Compute/LowCostGet3Min;4992,Microsoft.Compute/LowCostGet30Min;39978 status: code: 200 message: OK @@ -533,8 +541,8 @@ interactions: ParameterSetName: - -g -n --duration-in-seconds User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: POST @@ -544,17 +552,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/010964fc-a2fe-43d6-959d-ff4bdd6b23fc?api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0d96e0ba-ea1b-4094-b0b4-98308d501f99?api-version=2018-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 16 Apr 2019 21:22:49 GMT + - Mon, 29 Apr 2019 22:21:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/010964fc-a2fe-43d6-959d-ff4bdd6b23fc?monitor=true&api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0d96e0ba-ea1b-4094-b0b4-98308d501f99?monitor=true&api-version=2018-09-30 pragma: - no-cache server: @@ -565,9 +573,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostDiskHydrate3Min;998,Microsoft.Compute/HighCostDiskHydrate30Min;7997 + - Microsoft.Compute/HighCostDiskHydrate3Min;999,Microsoft.Compute/HighCostDiskHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -585,25 +593,25 @@ interactions: ParameterSetName: - -g -n --duration-in-seconds User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/010964fc-a2fe-43d6-959d-ff4bdd6b23fc?api-version=2018-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0d96e0ba-ea1b-4094-b0b4-98308d501f99?api-version=2018-09-30 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:22:49.6517698+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:22:49.8392668+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-jb0rsvcs5c2m.blob.core.windows.net/xqh2lg4vlfv0/abcd?sv=2017-04-17&sr=b&si=3a091d23-7396-415a-84e3-28f02a2b0f66&sig=frZjkA2EFYp7%2BAG9YTNCy5xJWSgxtSVKoPyt%2F7109AY%3D\"\ - \r\n}\r\n },\r\n \"name\": \"010964fc-a2fe-43d6-959d-ff4bdd6b23fc\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T22:21:09.308827+00:00\",\r\n \"\ + endTime\": \"2019-04-29T22:21:09.8400662+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-jb0rsvcs5c2m.blob.core.windows.net/qw3wwsszwgzz/abcd?sv=2017-04-17&sr=b&si=a8363ca6-6a98-4198-a1df-980c8bbe7d73&sig=G9biWfw2L5DQmfzfCQxhtDYXjbOcqFqAh7AMHIeCLFA%3D\"\ + \r\n}\r\n },\r\n \"name\": \"0d96e0ba-ea1b-4094-b0b4-98308d501f99\"\r\n}" headers: cache-control: - no-cache content-length: - - '425' + - '420' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:19 GMT + - Mon, 29 Apr 2019 22:21:46 GMT expires: - '-1' pragma: @@ -620,7 +628,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49973,Microsoft.Compute/GetOperation30Min;399967 + - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399994 status: code: 200 message: OK @@ -638,23 +646,23 @@ interactions: ParameterSetName: - -g -n --duration-in-seconds User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/010964fc-a2fe-43d6-959d-ff4bdd6b23fc?monitor=true&api-version=2018-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0d96e0ba-ea1b-4094-b0b4-98308d501f99?monitor=true&api-version=2018-09-30 response: body: - string: "{\r\n \"accessSAS\": \"https://md-jb0rsvcs5c2m.blob.core.windows.net/xqh2lg4vlfv0/abcd?sv=2017-04-17&sr=b&si=3a091d23-7396-415a-84e3-28f02a2b0f66&sig=frZjkA2EFYp7%2BAG9YTNCy5xJWSgxtSVKoPyt%2F7109AY%3D\"\ + string: "{\r\n \"accessSAS\": \"https://md-jb0rsvcs5c2m.blob.core.windows.net/qw3wwsszwgzz/abcd?sv=2017-04-17&sr=b&si=a8363ca6-6a98-4198-a1df-980c8bbe7d73&sig=G9biWfw2L5DQmfzfCQxhtDYXjbOcqFqAh7AMHIeCLFA%3D\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '200' + - '196' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:20 GMT + - Mon, 29 Apr 2019 22:21:39 GMT expires: - '-1' pragma: @@ -671,7 +679,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49972,Microsoft.Compute/GetOperation30Min;399966 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993 status: code: 200 message: OK @@ -689,15 +697,15 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:21:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:20:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -706,7 +714,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:20 GMT + - Mon, 29 Apr 2019 22:21:47 GMT expires: - '-1' pragma: @@ -722,7 +730,8 @@ interactions: message: OK - request: body: 'b''{"location": "westus", "tags": {}, "sku": {"name": "Premium_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1"}}}''' + {"hyperVGeneration": "V1", "creationData": {"createOption": "Copy", "sourceResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1"}}}''' headers: Accept: - application/json @@ -733,14 +742,14 @@ interactions: Connection: - keep-alive Content-Length: - - '327' + - '353' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT @@ -748,26 +757,27 @@ interactions: response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"\ - properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\"\ - ,\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\"\ + : {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ \r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\"\ : true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"name\"\ : \"d2\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b96111e7-0f20-4026-9630-da632753c081?api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9e001531-c532-4165-994d-1133818cb168?api-version=2018-09-30 cache-control: - no-cache content-length: - - '466' + - '497' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:21 GMT + - Mon, 29 Apr 2019 22:21:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b96111e7-0f20-4026-9630-da632753c081?monitor=true&api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9e001531-c532-4165-994d-1133818cb168?monitor=true&api-version=2018-09-30 pragma: - no-cache server: @@ -778,7 +788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7995 + - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -798,32 +808,32 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/b96111e7-0f20-4026-9630-da632753c081?api-version=2018-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9e001531-c532-4165-994d-1133818cb168?api-version=2018-09-30 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:23:21.5115713+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:23:22.0115911+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2019-04-29T22:21:41.3114598+00:00\",\r\n \"\ + endTime\": \"2019-04-29T22:21:41.9677091+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\"sku\":{\"name\":\"Premium_LRS\"\ - ,\"tier\":\"Premium\"},\"properties\":{\"creationData\":{\"createOption\"\ - :\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + ,\"tier\":\"Premium\"},\"properties\":{\"hyperVGeneration\":\"V1\",\"creationData\"\ + :{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ },\"diskSizeGB\":10,\"diskIOPSReadWrite\":120,\"diskMBpsReadWrite\":25,\"\ - timeCreated\":\"2019-04-16T21:23:21.5115713+00:00\",\"provisioningState\"\ + timeCreated\":\"2019-04-29T22:21:41.3270798+00:00\",\"provisioningState\"\ :\"Succeeded\",\"diskState\":\"Unattached\"},\"type\":\"Microsoft.Compute/disks\"\ ,\"location\":\"westus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2\"\ - ,\"name\":\"d2\"}\r\n },\r\n \"name\": \"b96111e7-0f20-4026-9630-da632753c081\"\ + ,\"name\":\"d2\"}\r\n },\r\n \"name\": \"9e001531-c532-4165-994d-1133818cb168\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '959' + - '983' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:50 GMT + - Mon, 29 Apr 2019 22:22:07 GMT expires: - '-1' pragma: @@ -840,7 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49971,Microsoft.Compute/GetOperation30Min;399962 + - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991 status: code: 200 message: OK @@ -858,17 +868,18 @@ interactions: ParameterSetName: - -g -n --source User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2?api-version=2018-09-30 response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\"\ - : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n\ - \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\":\ + \ \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\ + \n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ \r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\ - \n \"diskMBpsReadWrite\": 25,\r\n \"timeCreated\": \"2019-04-16T21:23:21.5115713+00:00\"\ + \n \"diskMBpsReadWrite\": 25,\r\n \"timeCreated\": \"2019-04-29T22:21:41.3270798+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_managed_disk000001/providers/Microsoft.Compute/disks/d2\"\ @@ -877,11 +888,11 @@ interactions: cache-control: - no-cache content-length: - - '866' + - '897' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:51 GMT + - Mon, 29 Apr 2019 22:22:11 GMT expires: - '-1' pragma: @@ -898,7 +909,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39975 + - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39975 status: code: 200 message: OK @@ -916,15 +927,15 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:21:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:20:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -933,7 +944,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:52 GMT + - Mon, 29 Apr 2019 22:22:08 GMT expires: - '-1' pragma: @@ -949,7 +960,8 @@ interactions: message: OK - request: body: '{"location": "westus", "tags": {"tag1": "s1"}, "sku": {"name": "Premium_LRS"}, - "properties": {"creationData": {"createOption": "Empty"}, "diskSizeGB": 1}}' + "properties": {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, + "diskSizeGB": 1}}' headers: Accept: - application/json @@ -960,14 +972,14 @@ interactions: Connection: - keep-alive Content-Length: - - '154' + - '180' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --size-gb --sku --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT @@ -975,25 +987,26 @@ interactions: response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"\ - properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\ - \r\n },\r\n \"diskSizeGB\": 1,\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"westus\",\r\n\ - \ \"tags\": {\r\n \"tag1\": \"s1\"\r\n }\r\n}" + properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\"\ + : {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\":\ + \ 1,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\"\ + : true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\"\ + : \"s1\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4417236f-2722-4526-ba57-e19bd2fa7ce1?api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1b224880-8b4b-4e79-9b27-b6c361597e18?api-version=2018-09-30 cache-control: - no-cache content-length: - - '284' + - '315' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:23:53 GMT + - Mon, 29 Apr 2019 22:22:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4417236f-2722-4526-ba57-e19bd2fa7ce1?monitor=true&api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1b224880-8b4b-4e79-9b27-b6c361597e18?monitor=true&api-version=2018-09-30 pragma: - no-cache server: @@ -1004,9 +1017,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;238,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;1918 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;239,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;1919 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1024,31 +1037,31 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4417236f-2722-4526-ba57-e19bd2fa7ce1?api-version=2018-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1b224880-8b4b-4e79-9b27-b6c361597e18?api-version=2018-09-30 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:23:53.4510634+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:23:53.6385691+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2019-04-29T22:22:13.4700604+00:00\",\r\n \"\ + endTime\": \"2019-04-29T22:22:13.7200534+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\"sku\":{\"name\":\"Premium_LRS\"\ - ,\"tier\":\"Premium\"},\"properties\":{\"creationData\":{\"createOption\"\ - :\"Empty\"},\"diskSizeGB\":1,\"timeCreated\":\"2019-04-16T21:23:53.4666952+00:00\"\ + ,\"tier\":\"Premium\"},\"properties\":{\"hyperVGeneration\":\"V1\",\"creationData\"\ + :{\"createOption\":\"Empty\"},\"diskSizeGB\":1,\"timeCreated\":\"2019-04-29T22:22:13.4700604+00:00\"\ ,\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\"\ :\"Microsoft.Compute/snapshots\",\"location\":\"westus\",\"tags\":{\"tag1\"\ :\"s1\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ - ,\"name\":\"s1\"}\r\n },\r\n \"name\": \"4417236f-2722-4526-ba57-e19bd2fa7ce1\"\ + ,\"name\":\"s1\"}\r\n },\r\n \"name\": \"1b224880-8b4b-4e79-9b27-b6c361597e18\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '730' + - '754' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:23 GMT + - Mon, 29 Apr 2019 22:22:43 GMT expires: - '-1' pragma: @@ -1065,7 +1078,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49971,Microsoft.Compute/GetOperation30Min;399959 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989 status: code: 200 message: OK @@ -1083,29 +1096,30 @@ interactions: ParameterSetName: - -g -n --size-gb --sku --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2018-09-30 response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\"\ - : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n\ - \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 1,\r\n\ - \ \"timeCreated\": \"2019-04-16T21:23:53.4666952+00:00\",\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\"\ - : \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"\ - tags\": {\r\n \"tag1\": \"s1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ + : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\":\ + \ \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 1,\r\n \"timeCreated\": \"2019-04-29T22:22:13.4700604+00:00\"\ + ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"s1\"\r\n },\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ ,\r\n \"name\": \"s1\"\r\n}" headers: cache-control: - no-cache content-length: - - '625' + - '656' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:23 GMT + - Mon, 29 Apr 2019 22:22:40 GMT expires: - '-1' pragma: @@ -1122,7 +1136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39972 + - Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39972 status: code: 200 message: OK @@ -1140,8 +1154,8 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1149,22 +1163,23 @@ interactions: response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\"\ - : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n\ - \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 1,\r\n\ - \ \"timeCreated\": \"2019-04-16T21:23:53.4666952+00:00\",\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\"\ - : \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"\ - tags\": {\r\n \"tag1\": \"s1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ + : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\":\ + \ \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 1,\r\n \"timeCreated\": \"2019-04-29T22:22:13.4700604+00:00\"\ + ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"s1\"\r\n },\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ ,\r\n \"name\": \"s1\"\r\n}" headers: cache-control: - no-cache content-length: - - '625' + - '656' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:25 GMT + - Mon, 29 Apr 2019 22:22:45 GMT expires: - '-1' pragma: @@ -1181,13 +1196,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39971 + - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39971 status: code: 200 message: OK - request: body: '{"location": "westus", "tags": {"tag1": "s1"}, "sku": {"name": "Standard_LRS"}, - "properties": {"creationData": {"createOption": "Empty"}, "diskSizeGB": 1}}' + "properties": {"hyperVGeneration": "V1", "creationData": {"createOption": "Empty"}, + "diskSizeGB": 1}}' headers: Accept: - application/json @@ -1198,14 +1214,14 @@ interactions: Connection: - keep-alive Content-Length: - - '155' + - '181' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT @@ -1213,26 +1229,26 @@ interactions: response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"\ - properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\ - \r\n },\r\n \"diskSizeGB\": 1,\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0\r\n },\r\n \"\ - location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"s1\"\r\n }\r\n\ - }" + properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\"\ + : {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\":\ + \ 1,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\"\ + : true,\r\n \"faultDomain\": 0\r\n },\r\n \"location\": \"westus\",\r\ + \n \"tags\": {\r\n \"tag1\": \"s1\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9ba8b181-91f0-4ca0-a5b0-e1f68cbbfd6a?api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4d5b6b88-bc40-4b42-9a69-bd9319890471?api-version=2018-09-30 cache-control: - no-cache content-length: - - '308' + - '339' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:25 GMT + - Mon, 29 Apr 2019 22:22:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9ba8b181-91f0-4ca0-a5b0-e1f68cbbfd6a?monitor=true&api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4d5b6b88-bc40-4b42-9a69-bd9319890471?monitor=true&api-version=2018-09-30 pragma: - no-cache server: @@ -1243,9 +1259,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;238,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;1917 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;238,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;1918 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1263,31 +1279,31 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/9ba8b181-91f0-4ca0-a5b0-e1f68cbbfd6a?api-version=2018-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/4d5b6b88-bc40-4b42-9a69-bd9319890471?api-version=2018-09-30 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:24:25.4865451+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:24:25.970861+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2019-04-29T22:22:45.6892681+00:00\",\r\n \"\ + endTime\": \"2019-04-29T22:22:46.3767698+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\":\"2019-04-16T21:23:53.4666952+00:00\"\ + ,\"tier\":\"Standard\"},\"properties\":{\"hyperVGeneration\":\"V1\",\"creationData\"\ + :{\"createOption\":\"Empty\"},\"diskSizeGB\":1,\"timeCreated\":\"2019-04-29T22:22:13.4700604+00:00\"\ ,\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\"\ :\"Microsoft.Compute/snapshots\",\"location\":\"westus\",\"tags\":{\"tag1\"\ :\"s1\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ - ,\"name\":\"s1\"}\r\n },\r\n \"name\": \"9ba8b181-91f0-4ca0-a5b0-e1f68cbbfd6a\"\ + ,\"name\":\"s1\"}\r\n },\r\n \"name\": \"4d5b6b88-bc40-4b42-9a69-bd9319890471\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '731' + - '756' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:55 GMT + - Mon, 29 Apr 2019 22:23:12 GMT expires: - '-1' pragma: @@ -1304,7 +1320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49964,Microsoft.Compute/GetOperation30Min;399950 + - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399985 status: code: 200 message: OK @@ -1322,29 +1338,30 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2018-09-30 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\": \"2019-04-16T21:23:53.4666952+00:00\",\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\"\ - : \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"\ - tags\": {\r\n \"tag1\": \"s1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ + : \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\"\ + : \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 1,\r\n \"timeCreated\": \"2019-04-29T22:22:13.4700604+00:00\"\ + ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"s1\"\r\n },\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ ,\r\n \"name\": \"s1\"\r\n}" headers: cache-control: - no-cache content-length: - - '627' + - '658' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:55 GMT + - Mon, 29 Apr 2019 22:23:13 GMT expires: - '-1' pragma: @@ -1361,7 +1378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4978,Microsoft.Compute/LowCostGet30Min;39965 + - Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39965 status: code: 200 message: OK @@ -1379,8 +1396,8 @@ interactions: ParameterSetName: - -g -n --source --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1397,7 +1414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:56 GMT + - Mon, 29 Apr 2019 22:23:23 GMT expires: - '-1' pragma: @@ -1425,8 +1442,8 @@ interactions: ParameterSetName: - -g -n --source --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1434,23 +1451,24 @@ interactions: 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\": 10,\r\ - \n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \ - \ \"timeCreated\": \"2019-04-16T21:21:45.9668632+00:00\",\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\"\r\n },\r\n \"type\"\ - : \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\"\ - : {\r\n \"tag1\": \"d1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + : \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\"\ + : \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n\ + \ \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2019-04-29T22:20:05.9605863+00:00\"\ + ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {\r\n \"tag1\": \"d1\"\r\n },\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ ,\r\n \"name\": \"d1\"\r\n}" headers: cache-control: - no-cache content-length: - - '680' + - '711' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:57 GMT + - Mon, 29 Apr 2019 22:23:14 GMT expires: - '-1' pragma: @@ -1467,7 +1485,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4977,Microsoft.Compute/LowCostGet30Min;39964 + - Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39964 status: code: 200 message: OK @@ -1485,15 +1503,15 @@ interactions: ParameterSetName: - -g -n --source --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:21:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:20:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1502,7 +1520,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:57 GMT + - Mon, 29 Apr 2019 22:23:22 GMT expires: - '-1' pragma: @@ -1518,7 +1536,8 @@ interactions: message: OK - request: body: 'b''{"location": "westus", "tags": {}, "sku": {"name": "Premium_LRS"}, "properties": - {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1"}}}''' + {"hyperVGeneration": "V1", "creationData": {"createOption": "Copy", "sourceResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1"}}}''' headers: Accept: - application/json @@ -1529,14 +1548,14 @@ interactions: Connection: - keep-alive Content-Length: - - '327' + - '353' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --source --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT @@ -1544,25 +1563,26 @@ interactions: response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"\ - properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\"\ - ,\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\"\ + : {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ \r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\"\ : true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/11b450ca-c16a-4bca-88b0-15b92b1662a5?api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/73dbb792-7bf1-459a-81e6-a308936146bd?api-version=2018-09-30 cache-control: - no-cache content-length: - - '449' + - '480' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:24:57 GMT + - Mon, 29 Apr 2019 22:23:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/11b450ca-c16a-4bca-88b0-15b92b1662a5?monitor=true&api-version=2018-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/73dbb792-7bf1-459a-81e6-a308936146bd?monitor=true&api-version=2018-09-30 pragma: - no-cache server: @@ -1573,7 +1593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;237,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;1916 + - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;237,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;1917 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1593,32 +1613,32 @@ interactions: ParameterSetName: - -g -n --source --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/11b450ca-c16a-4bca-88b0-15b92b1662a5?api-version=2018-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/73dbb792-7bf1-459a-81e6-a308936146bd?api-version=2018-09-30 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:24:58.0143901+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:24:58.5925036+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2019-04-29T22:23:17.8441529+00:00\",\r\n \"\ + endTime\": \"2019-04-29T22:23:18.6097857+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\"sku\":{\"name\":\"Premium_LRS\"\ - ,\"tier\":\"Premium\"},\"properties\":{\"creationData\":{\"createOption\"\ - :\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ - },\"diskSizeGB\":10,\"timeCreated\":\"2019-04-16T21:24:58.0143901+00:00\"\ + ,\"tier\":\"Premium\"},\"properties\":{\"hyperVGeneration\":\"V1\",\"creationData\"\ + :{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + },\"diskSizeGB\":10,\"timeCreated\":\"2019-04-29T22:23:17.8441529+00:00\"\ ,\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\"\ :\"Microsoft.Compute/snapshots\",\"location\":\"westus\",\"tags\":{},\"id\"\ :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2\"\ - ,\"name\":\"s2\"}\r\n },\r\n \"name\": \"11b450ca-c16a-4bca-88b0-15b92b1662a5\"\ + ,\"name\":\"s2\"}\r\n },\r\n \"name\": \"73dbb792-7bf1-459a-81e6-a308936146bd\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '920' + - '944' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:27 GMT + - Mon, 29 Apr 2019 22:23:44 GMT expires: - '-1' pragma: @@ -1635,7 +1655,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49963,Microsoft.Compute/GetOperation30Min;399943 + - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399983 status: code: 200 message: OK @@ -1653,16 +1673,17 @@ interactions: ParameterSetName: - -g -n --source --sku User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2?api-version=2018-09-30 response: body: string: "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\"\ - : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n\ - \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ - \r\n },\r\n \"diskSizeGB\": 10,\r\n \"timeCreated\": \"2019-04-16T21:24:58.0143901+00:00\"\ + : \"Premium\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\":\ + \ \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\ + \n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + \r\n },\r\n \"diskSizeGB\": 10,\r\n \"timeCreated\": \"2019-04-29T22:23:17.8441529+00:00\"\ ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ \r\n },\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\"\ : \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2\"\ @@ -1671,11 +1692,11 @@ interactions: cache-control: - no-cache content-length: - - '813' + - '844' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:28 GMT + - Mon, 29 Apr 2019 22:23:48 GMT expires: - '-1' pragma: @@ -1692,7 +1713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39962 + - Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39960 status: code: 200 message: OK @@ -1710,8 +1731,8 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1728,7 +1749,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:29 GMT + - Mon, 29 Apr 2019 22:23:47 GMT expires: - '-1' pragma: @@ -1756,8 +1777,8 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1765,22 +1786,23 @@ interactions: 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\": \"2019-04-16T21:23:53.4666952+00:00\",\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\"\ - : \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"\ - tags\": {\r\n \"tag1\": \"s1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ + : \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\"\ + : \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 1,\r\n \"timeCreated\": \"2019-04-29T22:22:13.4700604+00:00\"\ + ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"s1\"\r\n },\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ ,\r\n \"name\": \"s1\"\r\n}" headers: cache-control: - no-cache content-length: - - '627' + - '658' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:29 GMT + - Mon, 29 Apr 2019 22:23:51 GMT expires: - '-1' pragma: @@ -1797,7 +1819,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39961 + - Microsoft.Compute/LowCostGet3Min;4980,Microsoft.Compute/LowCostGet30Min;39959 status: code: 200 message: OK @@ -1815,8 +1837,8 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1833,7 +1855,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:29 GMT + - Mon, 29 Apr 2019 22:23:46 GMT expires: - '-1' pragma: @@ -1861,8 +1883,8 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -1870,23 +1892,24 @@ interactions: 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\": 10,\r\ - \n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \ - \ \"timeCreated\": \"2019-04-16T21:21:45.9668632+00:00\",\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\"\r\n },\r\n \"type\"\ - : \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\"\ - : {\r\n \"tag1\": \"d1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + : \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\"\ + : \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n\ + \ \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2019-04-29T22:20:05.9605863+00:00\"\ + ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {\r\n \"tag1\": \"d1\"\r\n },\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ ,\r\n \"name\": \"d1\"\r\n}" headers: cache-control: - no-cache content-length: - - '680' + - '711' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:29 GMT + - Mon, 29 Apr 2019 22:23:51 GMT expires: - '-1' pragma: @@ -1903,7 +1926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39960 + - Microsoft.Compute/LowCostGet3Min;4979,Microsoft.Compute/LowCostGet30Min;39958 status: code: 200 message: OK @@ -1921,15 +1944,15 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:21:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:20:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1938,7 +1961,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:29 GMT + - Mon, 29 Apr 2019 22:23:53 GMT expires: - '-1' pragma: @@ -1958,7 +1981,8 @@ interactions: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1"}}, "dataDisks": [{"lun": 0, "snapshot": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2"}}, {"lun": 1, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1"}}, - {"lun": 2, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2"}}]}}}''' + {"lun": 2, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2"}}]}, + "hyperVGeneration": "V1"}}''' headers: Accept: - application/json @@ -1969,18 +1993,18 @@ interactions: Connection: - keep-alive Content-Length: - - '1016' + - '1042' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i1?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i1?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\"\ @@ -1998,23 +2022,23 @@ interactions: \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"\ - location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"i1\"\r\n },\r\ - \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i1\"\ + : \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {\r\n \"tag1\": \"i1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i1\"\ ,\r\n \"name\": \"i1\"\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c4225cf0-55d9-4e03-ad2f-5e00449bf581?api-version=2018-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/47cf4f25-40c1-4a19-9aab-65678b3b25e5?api-version=2019-03-01 cache-control: - no-cache content-length: - - '1939' + - '1970' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:25:31 GMT + - Mon, 29 Apr 2019 22:23:48 GMT expires: - '-1' pragma: @@ -2027,9 +2051,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateImages3Min;38,Microsoft.Compute/CreateImages30Min;196 + - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' status: code: 201 message: Created @@ -2047,15 +2071,15 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c4225cf0-55d9-4e03-ad2f-5e00449bf581?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/47cf4f25-40c1-4a19-9aab-65678b3b25e5?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:25:31.2542235+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:25:36.3948653+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"c4225cf0-55d9-4e03-ad2f-5e00449bf581\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T22:23:51.4109467+00:00\",\r\n \"\ + endTime\": \"2019-04-29T22:23:56.5984281+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"47cf4f25-40c1-4a19-9aab-65678b3b25e5\"\r\n}" headers: cache-control: - no-cache @@ -2064,7 +2088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:01 GMT + - Mon, 29 Apr 2019 22:24:27 GMT expires: - '-1' pragma: @@ -2081,7 +2105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29922 + - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29985 status: code: 200 message: OK @@ -2099,10 +2123,10 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i1?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i1?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\"\ @@ -2123,19 +2147,19 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"i1\"\r\n \ - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i1\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {\r\n \"tag1\": \"i1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i1\"\ ,\r\n \"name\": \"i1\"\r\n}" headers: cache-control: - no-cache content-length: - - '2053' + - '2084' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:01 GMT + - Mon, 29 Apr 2019 22:24:19 GMT expires: - '-1' pragma: @@ -2152,7 +2176,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;355,Microsoft.Compute/GetImages30Min;1792 + - Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1794 status: code: 200 message: OK @@ -2170,8 +2194,8 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -2188,7 +2212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:02 GMT + - Mon, 29 Apr 2019 22:24:22 GMT expires: - '-1' pragma: @@ -2216,8 +2240,8 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -2225,22 +2249,23 @@ interactions: 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\": \"2019-04-16T21:23:53.4666952+00:00\",\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\"\ - : \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"\ - tags\": {\r\n \"tag1\": \"s1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ + : \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\"\ + : \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 1,\r\n \"timeCreated\": \"2019-04-29T22:22:13.4700604+00:00\"\ + ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"s1\"\r\n },\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ ,\r\n \"name\": \"s1\"\r\n}" headers: cache-control: - no-cache content-length: - - '627' + - '658' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:03 GMT + - Mon, 29 Apr 2019 22:24:22 GMT expires: - '-1' pragma: @@ -2257,7 +2282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39954 + - Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39952 status: code: 200 message: OK @@ -2275,8 +2300,8 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -2293,7 +2318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:02 GMT + - Mon, 29 Apr 2019 22:24:27 GMT expires: - '-1' pragma: @@ -2321,8 +2346,8 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -2330,23 +2355,24 @@ interactions: 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\": 10,\r\ - \n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \ - \ \"timeCreated\": \"2019-04-16T21:21:45.9668632+00:00\",\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\"\r\n },\r\n \"type\"\ - : \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\"\ - : {\r\n \"tag1\": \"d1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + : \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\"\ + : \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n\ + \ \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2019-04-29T22:20:05.9605863+00:00\"\ + ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {\r\n \"tag1\": \"d1\"\r\n },\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ ,\r\n \"name\": \"d1\"\r\n}" headers: cache-control: - no-cache content-length: - - '680' + - '711' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:03 GMT + - Mon, 29 Apr 2019 22:24:24 GMT expires: - '-1' pragma: @@ -2363,7 +2389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39953 + - Microsoft.Compute/LowCostGet3Min;4973,Microsoft.Compute/LowCostGet30Min;39951 status: code: 200 message: OK @@ -2381,15 +2407,15 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:21:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:20:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2398,7 +2424,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:03 GMT + - Mon, 29 Apr 2019 22:24:20 GMT expires: - '-1' pragma: @@ -2419,7 +2445,8 @@ interactions: "caching": "None", "storageAccountType": "Premium_LRS"}, "dataDisks": [{"lun": 0, "snapshot": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2"}}, {"lun": 1, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1"}}, - {"lun": 2, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2"}}]}}}''' + {"lun": 2, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2"}}]}, + "hyperVGeneration": "V1"}}''' headers: Accept: - application/json @@ -2430,18 +2457,18 @@ interactions: Connection: - keep-alive Content-Length: - - '1072' + - '1098' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i2?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i2?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\"\ @@ -2459,23 +2486,23 @@ interactions: \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"\ - location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"i1\"\r\n },\r\ - \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i2\"\ + : \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {\r\n \"tag1\": \"i1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i2\"\ ,\r\n \"name\": \"i2\"\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ba20a196-58ee-497f-9519-6779cd79335a?api-version=2018-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a067fb4-72cd-49ee-b8f2-dbe0046ac3c5?api-version=2019-03-01 cache-control: - no-cache content-length: - - '1938' + - '1969' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:03 GMT + - Mon, 29 Apr 2019 22:24:24 GMT expires: - '-1' pragma: @@ -2488,9 +2515,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateImages3Min;37,Microsoft.Compute/CreateImages30Min;195 + - Microsoft.Compute/CreateImages3Min;37,Microsoft.Compute/CreateImages30Min;197 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -2508,15 +2535,15 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ba20a196-58ee-497f-9519-6779cd79335a?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5a067fb4-72cd-49ee-b8f2-dbe0046ac3c5?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:26:04.0982287+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:26:09.2545037+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"ba20a196-58ee-497f-9519-6779cd79335a\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T22:24:24.7390478+00:00\",\r\n \"\ + endTime\": \"2019-04-29T22:24:29.9109338+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"5a067fb4-72cd-49ee-b8f2-dbe0046ac3c5\"\r\n}" headers: cache-control: - no-cache @@ -2525,7 +2552,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:34 GMT + - Mon, 29 Apr 2019 22:24:55 GMT expires: - '-1' pragma: @@ -2542,7 +2569,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29916 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29981 status: code: 200 message: OK @@ -2560,10 +2587,10 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i2?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i2?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\"\ @@ -2584,19 +2611,19 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"i1\"\r\n \ - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i2\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {\r\n \"tag1\": \"i1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i2\"\ ,\r\n \"name\": \"i2\"\r\n}" headers: cache-control: - no-cache content-length: - - '2052' + - '2083' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:34 GMT + - Mon, 29 Apr 2019 22:25:00 GMT expires: - '-1' pragma: @@ -2613,7 +2640,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;355,Microsoft.Compute/GetImages30Min;1790 + - Microsoft.Compute/GetImages3Min;353,Microsoft.Compute/GetImages30Min;1790 status: code: 200 message: OK @@ -2631,8 +2658,8 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -2649,7 +2676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:35 GMT + - Mon, 29 Apr 2019 22:24:51 GMT expires: - '-1' pragma: @@ -2677,8 +2704,8 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -2686,22 +2713,23 @@ interactions: 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\": \"2019-04-16T21:23:53.4666952+00:00\",\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\"\ - : \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n \"\ - tags\": {\r\n \"tag1\": \"s1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ + : \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\"\ + : \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 1,\r\n \"timeCreated\": \"2019-04-29T22:22:13.4700604+00:00\"\ + ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\"\ + : \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"s1\"\r\n },\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\"\ ,\r\n \"name\": \"s1\"\r\n}" headers: cache-control: - no-cache content-length: - - '627' + - '658' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:35 GMT + - Mon, 29 Apr 2019 22:24:53 GMT expires: - '-1' pragma: @@ -2718,7 +2746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4974,Microsoft.Compute/LowCostGet30Min;39948 + - Microsoft.Compute/LowCostGet3Min;4968,Microsoft.Compute/LowCostGet30Min;39946 status: code: 200 message: OK @@ -2736,8 +2764,8 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -2754,7 +2782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:36 GMT + - Mon, 29 Apr 2019 22:24:56 GMT expires: - '-1' pragma: @@ -2782,8 +2810,8 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET @@ -2791,23 +2819,24 @@ interactions: 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\": 10,\r\ - \n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \ - \ \"timeCreated\": \"2019-04-16T21:21:45.9668632+00:00\",\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\"\r\n },\r\n \"type\"\ - : \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\"\ - : {\r\n \"tag1\": \"d1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ + : \"Standard\"\r\n },\r\n \"properties\": {\r\n \"hyperVGeneration\"\ + : \"V1\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\ + \n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n\ + \ \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2019-04-29T22:20:05.9605863+00:00\"\ + ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\"\ + \r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"\ + westus\",\r\n \"tags\": {\r\n \"tag1\": \"d1\"\r\n },\r\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\"\ ,\r\n \"name\": \"d1\"\r\n}" headers: cache-control: - no-cache content-length: - - '680' + - '711' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:35 GMT + - Mon, 29 Apr 2019 22:24:56 GMT expires: - '-1' pragma: @@ -2824,7 +2853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4973,Microsoft.Compute/LowCostGet30Min;39947 + - Microsoft.Compute/LowCostGet3Min;4967,Microsoft.Compute/LowCostGet30Min;39945 status: code: 200 message: OK @@ -2842,15 +2871,15 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2018-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:21:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-29T22:20:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2859,7 +2888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:36 GMT + - Mon, 29 Apr 2019 22:24:56 GMT expires: - '-1' pragma: @@ -2880,7 +2909,8 @@ interactions: "caching": "ReadWrite", "storageAccountType": "Standard_LRS"}, "dataDisks": [{"lun": 0, "snapshot": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2"}}, {"lun": 1, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1"}}, - {"lun": 2, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2"}}]}}}''' + {"lun": 2, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2"}}]}, + "hyperVGeneration": "V1"}}''' headers: Accept: - application/json @@ -2891,18 +2921,18 @@ interactions: Connection: - keep-alive Content-Length: - - '1078' + - '1104' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i3?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i3?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\"\ @@ -2920,23 +2950,23 @@ interactions: \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"\ - location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"i1\"\r\n },\r\ - \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i3\"\ + : \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {\r\n \"tag1\": \"i1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i3\"\ ,\r\n \"name\": \"i3\"\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c55d5303-be77-4368-8c76-ac2c5c22fd85?api-version=2018-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a1c321ca-478b-4f07-8443-9e5cb55ff7e5?api-version=2019-03-01 cache-control: - no-cache content-length: - - '1944' + - '1975' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:26:37 GMT + - Mon, 29 Apr 2019 22:25:03 GMT expires: - '-1' pragma: @@ -2949,9 +2979,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateImages3Min;37,Microsoft.Compute/CreateImages30Min;194 + - Microsoft.Compute/CreateImages3Min;35,Microsoft.Compute/CreateImages30Min;195 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -2969,15 +2999,15 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c55d5303-be77-4368-8c76-ac2c5c22fd85?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a1c321ca-478b-4f07-8443-9e5cb55ff7e5?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2019-04-16T21:26:37.4734085+00:00\",\r\n \"\ - endTime\": \"2019-04-16T21:26:42.5828216+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"c55d5303-be77-4368-8c76-ac2c5c22fd85\"\r\n}" + string: "{\r\n \"startTime\": \"2019-04-29T22:24:58.0828271+00:00\",\r\n \"\ + endTime\": \"2019-04-29T22:25:03.2078091+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"a1c321ca-478b-4f07-8443-9e5cb55ff7e5\"\r\n}" headers: cache-control: - no-cache @@ -2986,7 +3016,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:27:07 GMT + - Mon, 29 Apr 2019 22:25:27 GMT expires: - '-1' pragma: @@ -3003,7 +3033,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29908 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29977 status: code: 200 message: OK @@ -3021,10 +3051,10 @@ interactions: ParameterSetName: - -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - computemanagementclient/4.6.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + computemanagementclient/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.63 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i3?api-version=2018-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i3?api-version=2019-03-01 response: body: string: "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\"\ @@ -3045,19 +3075,19 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2\"\ \r\n },\r\n \"caching\": \"None\",\r\n \"storageAccountType\"\ : \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\"\ - : \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \ - \ \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"i1\"\r\n \ - \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i3\"\ + : \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\"\ + : \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n \"tags\"\ + : {\r\n \"tag1\": \"i1\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i3\"\ ,\r\n \"name\": \"i3\"\r\n}" headers: cache-control: - no-cache content-length: - - '2058' + - '2089' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:27:07 GMT + - Mon, 29 Apr 2019 22:25:28 GMT expires: - '-1' pragma: @@ -3074,7 +3104,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetImages3Min;354,Microsoft.Compute/GetImages30Min;1788 + - Microsoft.Compute/GetImages3Min;349,Microsoft.Compute/GetImages30Min;1786 status: code: 200 message: OK @@ -3094,8 +3124,8 @@ interactions: ParameterSetName: - --name --yes --no-wait User-Agent: - - python/3.6.5 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 - resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Darwin-18.0.0-x86_64-i386-64bit) msrest/0.6.6 msrest_azure/0.6.0 + resourcemanagementclient/2.1.0 Azure-SDK-For-Python AZURECLI/2.0.63 accept-language: - en-US method: DELETE @@ -3109,11 +3139,11 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2019 21:27:09 GMT + - Mon, 29 Apr 2019 22:25:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTUFOQUdFRDo1RkRJU0tXSVdOUjdOVzRFNUxYRUpJRVVIWXxFMEY0RUY2QjM0NDczOERCLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGTUFOQUdFRDo1RkRJU0tTUlM2VldCNEFVUDZMSUNRVEZSNHw3NDgxMTMxNkNDNDc5QkQ0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2018-05-01 pragma: - no-cache strict-transport-security: 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 d6064d36201..6d29da3437d 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 @@ -379,17 +379,20 @@ def test_vm_custom_image_name_conflict(self, resource_group): # Create image from vm self.cmd('image create -g {rg} -n {image1} --source {vm}', checks=[ self.check("sourceVirtualMachine.id", '{vm_id}'), - self.check("storageProfile.osDisk.managedDisk", None) + self.check("storageProfile.osDisk.managedDisk", None), + self.check('hyperVgeneration', 'V1') ]) # Create image from vm id self.cmd('image create -g {rg} -n {image2} --source {vm_id}', checks=[ self.check("sourceVirtualMachine.id", '{vm_id}'), - self.check("storageProfile.osDisk.managedDisk", None) + self.check("storageProfile.osDisk.managedDisk", None), + self.check('hyperVgeneration', 'V1') ]) # Create image from disk id - self.cmd('image create -g {rg} -n {image3} --source {os_disk_id} --os-type linux', checks=[ + self.cmd('image create -g {rg} -n {image3} --source {os_disk_id} --os-type linux --hyper-v-generation "V1"', checks=[ self.check("sourceVirtualMachine", None), - self.check("storageProfile.osDisk.managedDisk.id", '{os_disk_id}') + self.check("storageProfile.osDisk.managedDisk.id", '{os_disk_id}'), + self.check('hyperVgeneration', 'V1') ]) @@ -3144,6 +3147,82 @@ def test_gallery_e2e(self, resource_group, resource_group_location): # endregion +# region ppg tests + + +class ProximityPlacementGroupScenarioTest(ScenarioTest): + + @ResourceGroupPreparer(name_prefix="cli_test_ppg_cmds_") + def test_proximity_placement_group(self, resource_group, resource_group_location): + self.kwargs.update({ + 'ppg1': 'my_ppg_1', + 'ppg2': 'my_ppg_2', + 'loc': resource_group_location + }) + + self.cmd('ppg create -n {ppg1} -t standard -g {rg}', checks=[ + self.check('name', '{ppg1}'), + self.check('location', '{loc}'), + self.check('proximityPlacementGroupType', 'Standard') + ]) + + self.cmd('ppg create -n {ppg2} -t ultra -g {rg}', checks=[ + self.check('name', '{ppg2}'), + self.check('location', '{loc}'), + self.check('proximityPlacementGroupType', 'Ultra') + ]) + + @ResourceGroupPreparer(name_prefix='cli_test_ppg_resources_') + def test_ppg_with_related_resources(self, resource_group): + + self.kwargs.update({ + 'ppg': 'my_ppg_1', + 'vm': 'vm1', + 'vmss': 'vmss1', + 'avset': 'avset1', + 'ssh_key': TEST_SSH_KEY_PUB + }) + + self.kwargs['ppg_id'] = self.cmd('ppg create -n {ppg} -t standard -g {rg}').get_output_in_json()['id'] + + self.kwargs['vm_id'] = self.cmd('vm create -g {rg} -n {vm} --image UbuntuLTS --ssh-key-value \'{ssh_key}\' --ppg {ppg}').get_output_in_json()['id'] + + self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --ssh-key-value \'{ssh_key}\' --ppg {ppg_id}') + self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id'] + + self.kwargs['avset_id'] = self.cmd('vm availability-set create -g {rg} -n {avset} --ppg {ppg}').get_output_in_json()['id'] + + ppg_resource = self.cmd('ppg show -n {ppg} -g {rg}').get_output_in_json() + + # check that the compute resources are created with PPG + + self._assert_ids_equal(ppg_resource['availabilitySets'][0]['id'], self.kwargs['avset_id'], rg_prefix='cli_test_ppg_resources_') + self._assert_ids_equal(ppg_resource['virtualMachines'][0]['id'], self.kwargs['vm_id'], rg_prefix='cli_test_ppg_resources_') + self._assert_ids_equal(ppg_resource['virtualMachineScaleSets'][0]['id'], self.kwargs['vmss_id'], 'cli_test_ppg_resources_') + + # it would be simpler to do the following: + # self.assertEqual(ppg_resource['availabilitySets'][0]['id'].lower(), self.kwargs['avset_id'].lower()) + # self.assertEqual(ppg_resource['virtualMachines'][0]['id'].lower(), self.kwargs['vm_id'].lower()) + # self.assertEqual(ppg_resource['virtualMachineScaleSets'][0]['id'].lower(), self.kwargs['vmss_id'].lower()) + # + # however, the CLI does not replace resource group values in payloads in the recordings. + def _assert_ids_equal(self, id_1, id_2, rg_prefix=None): + from msrestazure.tools import parse_resource_id + + id_1, id_2, rg_prefix = id_1.lower(), id_2.lower(), rg_prefix.lower() if rg_prefix else rg_prefix + + parsed_1, parsed_2 = parse_resource_id(id_1), parse_resource_id(id_2) + + self.assertEqual(len(parsed_1.keys()), len(parsed_2.keys())) + + for k1, k2 in zip(sorted(parsed_1.keys()), sorted(parsed_2.keys())): + if rg_prefix is not None and k1 == 'resource_group': + self.assertTrue(parsed_1[k1].startswith(rg_prefix)) + self.assertTrue(parsed_2[k2].startswith(rg_prefix)) + else: + self.assertEqual(parsed_1[k1], parsed_2[k2]) +# endregion + if __name__ == '__main__': unittest.main() diff --git a/src/command_modules/azure-cli-vm/setup.py b/src/command_modules/azure-cli-vm/setup.py index bdc494001fe..dd08e4a5214 100644 --- a/src/command_modules/azure-cli-vm/setup.py +++ b/src/command_modules/azure-cli-vm/setup.py @@ -34,7 +34,7 @@ DEPENDENCIES = [ 'azure-mgmt-msi==0.2.0', 'azure-mgmt-authorization==0.50.0', - 'azure-mgmt-compute==4.6.1', + 'azure-mgmt-compute==5.0.0', 'azure-mgmt-keyvault==1.1.0', 'azure-keyvault==1.1.0', 'azure-mgmt-network==2.6.0',